blob: 0c473d92936cd990ba09c7aaa557264f671a5c64 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#===------------------------------------------------------------------------===#
#
# The KLEE Symbolic Virtual Machine
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
#===------------------------------------------------------------------------===#
add_executable(klee-exec-tree main.cpp Tree.cpp DFSVisitor.cpp Printers.cpp)
target_compile_features(klee-exec-tree PRIVATE cxx_std_17)
target_include_directories(klee-exec-tree PRIVATE ${KLEE_INCLUDE_DIRS} ${SQLite3_INCLUDE_DIRS})
target_link_libraries(klee-exec-tree PUBLIC ${SQLite3_LIBRARIES})
install(TARGETS klee-exec-tree DESTINATION bin)
|