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

set(KLEE_LIBS kleeBasic)

target_link_libraries(gen-random-bout ${KLEE_LIBS})

install(TARGETS gen-random-bout RUNTIME DESTINATION bin)