CMake: defines and uses macro add_llvm_definitions for keeping track
[oota-llvm.git] / cmake / modules / AddLLVMDefinitions.cmake
1 # There is no clear way of keeping track of compiler command-line\r
2 # options chosen via `add_definitions', so we need our own method for\r
3 # using it on tools/llvm-config/CMakeLists.txt.\r
4 \r
5 # Beware that there is no implementation of remove_llvm_definitions.\r
6 \r
7 macro(add_llvm_definitions)\r
8   set(LLVM_DEFINITIONS "${LLVM_DEFINITIONS} ${ARGN}")\r
9   add_definitions( ${ARGN} )\r
10 endmacro(add_llvm_definitions)\r
11 \r