Initial project sketch

This commit is contained in:
TennesseeTrash 2025-12-20 06:37:29 +01:00
commit cdfbcf4f61
15 changed files with 246 additions and 0 deletions

13
CMake/cpr.cmake Normal file
View file

@ -0,0 +1,13 @@
include(FetchContent)
FetchContent_Declare(
cpr
GIT_REPOSITORY ssh://git@code.3011.io/Mirrors/cpr.git
GIT_TAG 1.14.1
)
set(BUILD_SHARED_LIBS OFF)
FetchContent_MakeAvailable(
cpr
)

11
CMake/libprocess.cmake Normal file
View file

@ -0,0 +1,11 @@
include(FetchContent)
FetchContent_Declare(
libcbor
GIT_REPOSITORY ssh://git@code.3011.io/TennesseeTrash/LibProcess.git
GIT_TAG v0.0.1
)
FetchContent_MakeAvailable(
libcbor
)