diff options
Diffstat (limited to 'lib/Module/CMakeLists.txt')
| -rw-r--r-- | lib/Module/CMakeLists.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/Module/CMakeLists.txt b/lib/Module/CMakeLists.txt index 4347b67d..73f003c2 100644 --- a/lib/Module/CMakeLists.txt +++ b/lib/Module/CMakeLists.txt @@ -6,7 +6,7 @@ # License. See LICENSE.TXT for details. # #===------------------------------------------------------------------------===# -klee_add_component(kleeModule +set(KLEE_MODULE_COMPONENT_SRCS Checks.cpp InstructionInfoTable.cpp InstructionOperandTypeCheckPass.cpp @@ -21,6 +21,14 @@ klee_add_component(kleeModule Scalarizer.cpp ) +if (USE_WORKAROUND_LLVM_PR39177) + list(APPEND KLEE_MODULE_COMPONENT_SRCS WorkaroundLLVMPR39177.cpp) +endif() + +klee_add_component(kleeModule + ${KLEE_MODULE_COMPONENT_SRCS} +) + set(LLVM_COMPONENTS bitreader bitwriter |
