summaryrefslogtreecommitdiff
path: root/runtime/CMakeLists.txt
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2023-12-05 13:52:31 -0500
committerJonathan Bradley <jcb@pikum.xyz>2023-12-05 13:52:31 -0500
commitbbde646e46f8993fcf1f30ead6b7376f1670f389 (patch)
treedd38ba7241d8fdbc642daeb44d64bf594260cc26 /runtime/CMakeLists.txt
parentf3a850f0f7f2547c80f4d1dac894788ca3546c33 (diff)
add runtime first pass
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)