aboutsummaryrefslogtreecommitdiff
path: root/source/lib
diff options
context:
space:
mode:
Diffstat (limited to 'source/lib')
-rw-r--r--source/lib/control/CMakeLists.txt3
-rw-r--r--source/lib/proto/CMakeLists.txt2
-rw-r--r--source/lib/system/CMakeLists.txt5
3 files changed, 0 insertions, 10 deletions
diff --git a/source/lib/control/CMakeLists.txt b/source/lib/control/CMakeLists.txt
index 9e5a33d..b4a4b02 100644
--- a/source/lib/control/CMakeLists.txt
+++ b/source/lib/control/CMakeLists.txt
@@ -3,9 +3,6 @@ cmake_path(GET CMAKE_CURRENT_SOURCE_DIR STEM LIB_NAME)
file(GLOB_RECURSE LIB_HEADERS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" CONFIGURE_DEPENDS "**/*.hpp")
file(GLOB_RECURSE LIB_SOURCES RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" CONFIGURE_DEPENDS "**/*.cpp")
-find_package("Boost" REQUIRED COMPONENTS "headers")
-find_package("spdlog" REQUIRED)
-
add_library("wanda-${LIB_NAME}" ${WANDA_LIBRARY_TYPE}
${LIB_SOURCES}
)
diff --git a/source/lib/proto/CMakeLists.txt b/source/lib/proto/CMakeLists.txt
index a99c364..b20663c 100644
--- a/source/lib/proto/CMakeLists.txt
+++ b/source/lib/proto/CMakeLists.txt
@@ -3,8 +3,6 @@ cmake_path(GET CMAKE_CURRENT_SOURCE_DIR STEM LIB_NAME)
file(GLOB_RECURSE LIB_HEADERS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" CONFIGURE_DEPENDS "**/*.hpp")
file(GLOB_RECURSE LIB_SOURCES RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" CONFIGURE_DEPENDS "**/*.cpp")
-find_package("spdlog")
-
add_library("wanda-${LIB_NAME}" ${WANDA_LIBRARY_TYPE}
${LIB_SOURCES}
)
diff --git a/source/lib/system/CMakeLists.txt b/source/lib/system/CMakeLists.txt
index 59d0b50..7589c56 100644
--- a/source/lib/system/CMakeLists.txt
+++ b/source/lib/system/CMakeLists.txt
@@ -3,11 +3,6 @@ cmake_path(GET CMAKE_CURRENT_SOURCE_DIR STEM LIB_NAME)
file(GLOB_RECURSE LIB_HEADERS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" CONFIGURE_DEPENDS "**/*.hpp")
file(GLOB_RECURSE LIB_SOURCES RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" CONFIGURE_DEPENDS "**/*.cpp")
-find_package("Boost" REQUIRED COMPONENTS "headers")
-find_package("JPEG" REQUIRED)
-find_package("PNG" REQUIRED)
-find_package("spdlog" REQUIRED)
-
find_package("PkgConfig" REQUIRED)
pkg_check_modules("GIO"