about summary refs log tree commit diff homepage
path: root/tools/ktest-gen/CMakeLists.txt
blob: 2bd9af6be1ad0fc3feebb955e36f6d1aaeea574b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#===------------------------------------------------------------------------===#
#
#                     The KLEE Symbolic Virtual Machine
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
#===------------------------------------------------------------------------===#
add_executable(ktest-gen
  ktest-gen.cpp
)

set(KLEE_LIBS kleeBasic)

target_link_libraries(ktest-gen ${KLEE_LIBS})
target_include_directories(ktest-gen PRIVATE ${KLEE_INCLUDE_DIRS})

install(TARGETS ktest-gen RUNTIME DESTINATION bin)