From f300d5079a331324d57103b12b489410c4c282df Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Mon, 6 May 2024 13:22:27 -0600 Subject: [PATCH] cmake doesn't use commas to separate arguments --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f77a281c..c6e32eb24 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,7 +32,7 @@ option(ENABLE_SSL "Build psinode with TLS support" ON) add_subdirectory(native) add_subdirectory(rust) -file(APPEND ${CMAKE_BINARY_DIR}/CTestTestfile.cmake "subdirs(\"native\", \"rust\")\n") +file(APPEND ${CMAKE_BINARY_DIR}/CTestTestfile.cmake "subdirs(\"native\" \"rust\")\n") option(BUILD_DEBUG_WASM "Build debug wasms" OFF)