summaryrefslogtreecommitdiff
path: root/runtime/CMakeLists.txt
blob: 9510970a476eb950ed33772f347ab5b1f0e8887a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
project(pke_runtime VERSION 0.0)

set(PKE_RUNTIME_SOURCE_FILES
	main.cpp
)
add_executable(pke_runtime
	${PKE_RUNTIME_SOURCE_FILES}
)
target_link_libraries(pke_runtime PRIVATE pke)
target_include_directories(pke_runtime PRIVATE pke)

install(
	TARGETS pke_runtime
	RUNTIME DESTINATION bin
)