Skip to content

Instantly share code, notes, and snippets.

@avilleret
Created January 9, 2017 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avilleret/58ca1c9ba79cd203e16729ffe760ddc2 to your computer and use it in GitHub Desktop.
Save avilleret/58ca1c9ba79cd203e16729ffe760ddc2 to your computer and use it in GitHub Desktop.
minimal CMakeLists.txt to check environnement variable
set(ENV{FOO} ${BAR})
message(STATUS "BAR: " ${BAR})
message(STATUS "ENV(FOO): " $ENV{FOO})
set(ENV{CASH} ${BAR})
message(STATUS "BAR: " ${BAR})
message(STATUS "ENV(CASH): " $ENV{CASH})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment