From 0a12ccaebf66cae682370c4d0d9e6e1887d91904 Mon Sep 17 00:00:00 2001 From: Peter M. Groen Date: Sun, 15 Jan 2023 19:00:11 +0100 Subject: [PATCH] Removed Qt Dependency --- CMakeLists.txt | 2 ++ src/CMakeLists.txt | 3 --- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 733cfda..9925628 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,6 +5,8 @@ project(osdev_crypter) include(projectheader) project_header(osdev_crypter) +add_subdirectory(${CMAKE_SOURCE_DIR}/submodules/logger) + add_subdirectory(src) add_subdirectory(tests) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index c5b0681..36e4d8d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -3,10 +3,8 @@ LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/submodules/cmake) include(projectheader) project_header(crypter) -find_package( Qt5Core REQUIRED ) include_directories( SYSTEM - ${Qt5Core_INCLUDE_DIRS} ${CMAKE_SOURCE_DIR}/submodules/logger/src ) @@ -25,7 +23,6 @@ link_directories( include(library) add_libraries( - ${Qt5Core_LIBRARIES} crypto logger ) -- libgit2 0.21.4