summaryrefslogtreecommitdiff
path: root/runtime/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/CMakeLists.txt')
-rw-r--r--runtime/CMakeLists.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt
new file mode 100644
index 0000000..24349aa
--- /dev/null
+++ b/runtime/CMakeLists.txt
@@ -0,0 +1,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)