| Oscar Fuentes | 9a0107d | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 1 | # There is no clear way of keeping track of compiler command-line |
| 2 | # options chosen via `add_definitions', so we need our own method for | ||||
| 3 | # using it on tools/llvm-config/CMakeLists.txt. | ||||
| 4 | |||||
| 5 | # Beware that there is no implementation of remove_llvm_definitions. | ||||
| 6 | |||||
| 7 | macro(add_llvm_definitions) | ||||
| 8 | set(LLVM_DEFINITIONS "${LLVM_DEFINITIONS} ${ARGN}") | ||||
| 9 | add_definitions( ${ARGN} ) | ||||
| 10 | endmacro(add_llvm_definitions) | ||||
| 11 | |||||