Initial Commit

This commit is contained in:
2024-12-11 22:08:45 +01:00
commit 2d05d854ff
43 changed files with 3610 additions and 0 deletions

23
cpepetest1/CMakeLists.txt Normal file
View File

@@ -0,0 +1,23 @@
cmake_minimum_required(VERSION 3.30)
project(cpepetest1)
set(CMAKE_CXX_STANDARD 23)
include(FetchContent)
FetchContent_Declare(
execution26
# for local development, use SOURCE_DIR <path-to>/execution26
GIT_REPOSITORY https://github.com/bemanproject/execution26
GIT_TAG c32b4fc
)
FetchContent_Declare(
net29
# for local development, use SOURCE_DIR <path-to>/net29
GIT_REPOSITORY https://github.com/bemanproject/net29
GIT_TAG 543372f
)
FetchContent_MakeAvailable(execution26 net29)
add_executable(cpepetest1 main.cpp)
target_link_libraries(cpepetest1 beman_execution26 beman_net29)