-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
32 lines (30 loc) · 830 Bytes
/
CMakeLists.txt
File metadata and controls
32 lines (30 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# If we don't need RTTI or EH, there's no reason to export anything
# from the hello plugin.
#if( NOT LLVM_REQUIRES_RTTI )
# if( NOT LLVM_REQUIRES_EH )
# set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/Hello.exports)
# endif()
#endif()
if(WIN32 OR CYGWIN)
set(LLVM_LINK_COMPONENTS Core Support)
endif()
add_llvm_loadable_module( llvm-vsa
src/vsa.cpp
src/abstract_domain/BoundedSet.cpp
src/abstract_domain/StridedInterval.cpp
src/abstract_domain/CompositeDomain.cpp
src/fixpoint/state.cpp
src/fixpoint/vsa_visitor.cpp
src/fixpoint/worklist.cpp
src/fixpoint/branch_conditions.cpp
src/api/vsa_result.cpp
src/api/vsa_result_value.cpp
test/BoundedSetTest.cpp
test/StridedIntervalTest.cpp
test/CompositeDomainTest.cpp
test/TestRunner.cpp
DEPENDS
intrinsics_gen
PLUGIN_TOOL
opt
)