From c2123c371a991d5842096224d55d271000c232bb Mon Sep 17 00:00:00 2001 From: sylvieee-iot Date: Thu, 2 May 2024 23:09:35 +0300 Subject: [PATCH] Fix stupid CMake --- third_party/open-bp-cpp/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/third_party/open-bp-cpp/CMakeLists.txt b/third_party/open-bp-cpp/CMakeLists.txt index 598976d6..68102e96 100644 --- a/third_party/open-bp-cpp/CMakeLists.txt +++ b/third_party/open-bp-cpp/CMakeLists.txt @@ -14,7 +14,7 @@ project(buttplugCpp) # Add source to this project's executable. file(GLOB SRC_FILES - "src/*.cpp" + "source/*.cpp" "include/*.h" "include/*.hpp" ) @@ -23,6 +23,7 @@ add_library(buttplugCpp STATIC ${SRC_FILES}) set(USE_ZLIB FALSE) target_include_directories(buttplugCpp PUBLIC third_party/IXWebSocket/ixwebsocket) +target_include_directories(buttplugCpp PUBLIC include) add_subdirectory(third_party/IXWebSocket) find_package(Threads REQUIRED)