mirror of
https://github.com/reactos/CMake.git
synced 2024-12-20 10:38:08 +00:00
711b63f7e0
Historically CMake has always expanded ${} variable references in the
values given to include_directories(), link_directories(), and
link_libraries(). This has been unnecessary since general ${}
evaluation syntax was added to the language a LONG time ago, but has
remained for compatibility with VERY early CMake versions.
For a long time the re-expansion was a lightweight operation because it
was only processed once at the directory level and the fast-path of
cmMakefile::ExpandVariablesInString was usually taken because values did
not have any '$' in them. Then commit
|
||
---|---|---|
.. | ||
CMakeLists.txt | ||
CMP0019-code.cmake | ||
CMP0019-NEW.cmake | ||
CMP0019-OLD.cmake | ||
CMP0019-WARN-stderr.txt | ||
CMP0019-WARN.cmake | ||
RunCMakeTest.cmake |