blob: 24349aa2cd90f1bee1f71dc8f34c31ec5ee4126e (
plain)
1
2
3
4
5
6
7
8
9
10
|
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)
|