Commit 0a12ccaebf66cae682370c4d0d9e6e1887d91904
1 parent
0288e1ab
Removed Qt Dependency
Showing
2 changed files
with
2 additions
and
3 deletions
CMakeLists.txt
src/CMakeLists.txt
... | ... | @@ -3,10 +3,8 @@ LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/submodules/cmake) |
3 | 3 | include(projectheader) |
4 | 4 | project_header(crypter) |
5 | 5 | |
6 | -find_package( Qt5Core REQUIRED ) | |
7 | 6 | |
8 | 7 | include_directories( SYSTEM |
9 | - ${Qt5Core_INCLUDE_DIRS} | |
10 | 8 | ${CMAKE_SOURCE_DIR}/submodules/logger/src |
11 | 9 | ) |
12 | 10 | |
... | ... | @@ -25,7 +23,6 @@ link_directories( |
25 | 23 | |
26 | 24 | include(library) |
27 | 25 | add_libraries( |
28 | - ${Qt5Core_LIBRARIES} | |
29 | 26 | crypto |
30 | 27 | logger |
31 | 28 | ) | ... | ... |