From cbe8715b026766d3e1511a0f48c40f824a978e9e Mon Sep 17 00:00:00 2001 From: CPunch Date: Sun, 13 Mar 2022 21:54:47 -0500 Subject: [PATCH] Added Windows support (for the binaries that support it) --- CMakeLists.txt | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7b07b7f..da9ee15 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,6 +41,10 @@ add_subdirectory(cmake-modules/libsodium) # compile laikalib, tools, cnc & bot add_subdirectory(lib) add_subdirectory(tools) -add_subdirectory(cnc) -add_subdirectory(bot) -add_subdirectory(shell) + +# these subprojects don't support windows (sorry) +if(NOT WIN32) + add_subdirectory(bot) # windows support Soon:tm: + add_subdirectory(cnc) + add_subdirectory(shell) +endif()