Add apps directory and initializer application

This commit is contained in:
Max Lübke 2024-03-07 13:54:53 +00:00
parent a6063776ea
commit 24b0607e94
3 changed files with 9 additions and 0 deletions

View File

@ -41,3 +41,5 @@ endif()
option(BUILD_DOC "Build documentation with doxygen" OFF)
add_subdirectory(docs)
add_subdirectory(apps)

4
apps/CMakeLists.txt Normal file
View File

@ -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)

View File

@ -0,0 +1,3 @@
#include <Rcpp.h>
int main(int argc, char **argv) {}