From 24b0607e94db689c28ff535f5fb9e68c65c1244b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20L=C3=BCbke?= Date: Thu, 7 Mar 2024 13:54:53 +0000 Subject: [PATCH] Add apps directory and initializer application --- CMakeLists.txt | 2 ++ apps/CMakeLists.txt | 4 ++++ apps/initializer/main.cpp | 3 +++ 3 files changed, 9 insertions(+) create mode 100644 apps/CMakeLists.txt create mode 100644 apps/initializer/main.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt index 8faf514e6..e6701b564 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,3 +41,5 @@ endif() option(BUILD_DOC "Build documentation with doxygen" OFF) add_subdirectory(docs) + +add_subdirectory(apps) \ No newline at end of file diff --git a/apps/CMakeLists.txt b/apps/CMakeLists.txt new file mode 100644 index 000000000..928a20444 --- /dev/null +++ b/apps/CMakeLists.txt @@ -0,0 +1,4 @@ +file(GLOB INIT_SRCS CONFIGURE_DEPENDS "initializer/*.cpp") + +add_executable(poet_initializer ${INIT_SRCS}) +target_link_libraries(poet_initializer RRuntime tug) \ No newline at end of file diff --git a/apps/initializer/main.cpp b/apps/initializer/main.cpp new file mode 100644 index 000000000..5297158c5 --- /dev/null +++ b/apps/initializer/main.cpp @@ -0,0 +1,3 @@ +#include + +int main(int argc, char **argv) {} \ No newline at end of file