about summary refs log tree commit diff homepage
path: root/tools/ktest-randgen/CMakeLists.txt
blob: 48b23485124a9487c34bbcf5a42f3ce3cb35c960 (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-randgen
  ktest-randgen.cpp
)

set(KLEE_LIBS kleeBasic)

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

install(TARGETS ktest-randgen RUNTIME DESTINATION bin)