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
5 # Beware that there is no implementation of remove_llvm_definitions.
\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