You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
528 B

  1. CMAKE_SUBLIME_TEXT_2_ENV_SETTINGS
  2. ---------------------------------
  3. This variable contains a list of env vars as a list of tokens with the
  4. syntax ``var=value``.
  5. Example:
  6. .. code-block:: cmake
  7. set(CMAKE_SUBLIME_TEXT_2_ENV_SETTINGS
  8. "FOO=FOO1\;FOO2\;FOON"
  9. "BAR=BAR1\;BAR2\;BARN"
  10. "BAZ=BAZ1\;BAZ2\;BAZN"
  11. "FOOBAR=FOOBAR1\;FOOBAR2\;FOOBARN"
  12. "VALID="
  13. )
  14. In case of malformed variables CMake will fail:
  15. .. code-block:: cmake
  16. set(CMAKE_SUBLIME_TEXT_2_ENV_SETTINGS
  17. "THIS_IS_NOT_VALID"
  18. )