Skip to content
This repository has been archived by the owner on Dec 9, 2021. It is now read-only.

Commit

Permalink
Adapt to QtConcurrent being a separate module now.
Browse files Browse the repository at this point in the history
  • Loading branch information
debfx committed Sep 12, 2015
1 parent 5ad9edc commit 208b0f3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Expand Up @@ -162,6 +162,7 @@ if(WITH_TESTS)
endif(WITH_TESTS)

find_package(Qt5Core REQUIRED)
find_package(Qt5Concurrent REQUIRED)
find_package(Qt5Widgets REQUIRED)
find_package(Qt5Test REQUIRED)
find_package(Qt5LinguistTools REQUIRED)
Expand Down
3 changes: 2 additions & 1 deletion src/CMakeLists.txt
Expand Up @@ -173,12 +173,13 @@ qt5_wrap_ui(keepassx_SOURCES ${keepassx_FORMS})

add_library(keepassx_core STATIC ${keepassx_SOURCES})
set_target_properties(keepassx_core PROPERTIES COMPILE_DEFINITIONS KEEPASSX_BUILDING_CORE)
target_link_libraries(keepassx_core Qt5::Core Qt5::Widgets)
target_link_libraries(keepassx_core Qt5::Core Qt5::Concurrent Qt5::Widgets)

add_executable(${PROGNAME} WIN32 MACOSX_BUNDLE ${keepassx_SOURCES_MAINEXE})
target_link_libraries(${PROGNAME}
keepassx_core
Qt5::Core
Qt5::Concurrent
Qt5::Widgets
${GCRYPT_LIBRARIES}
${ZLIB_LIBRARIES})
Expand Down
2 changes: 1 addition & 1 deletion src/keys/CompositeKey.cpp
Expand Up @@ -18,7 +18,7 @@
#include "CompositeKey.h"
#include "CompositeKey_p.h"

#include <QtConcurrentRun>
#include <QtConcurrent>
#include <QTime>

#include "crypto/CryptoHash.h"
Expand Down
3 changes: 2 additions & 1 deletion tests/CMakeLists.txt
Expand Up @@ -86,6 +86,7 @@ endmacro(add_unit_test)
set(TEST_LIBRARIES
keepassx_core
Qt5::Core
Qt5::Concurrent
Qt5::Widgets
Qt5::Test
${GCRYPT_LIBRARIES}
Expand All @@ -94,7 +95,7 @@ set(TEST_LIBRARIES

set(testsupport_SOURCES modeltest.cpp FailDevice.cpp)
add_library(testsupport STATIC ${testsupport_SOURCES})
target_link_libraries(testsupport Qt5::Core Qt5::Widgets Qt5::Test)
target_link_libraries(testsupport Qt5::Core Qt5::Concurrent Qt5::Widgets Qt5::Test)

add_unit_test(NAME testgroup SOURCES TestGroup.cpp
LIBS ${TEST_LIBRARIES})
Expand Down
1 change: 1 addition & 0 deletions utils/CMakeLists.txt
Expand Up @@ -19,6 +19,7 @@ add_executable(kdbx-extract kdbx-extract.cpp)
target_link_libraries(kdbx-extract
keepassx_core
Qt5::Core
Qt5::Concurrent
Qt5::Widgets
${GCRYPT_LIBRARIES}
${ZLIB_LIBRARIES})

0 comments on commit 208b0f3

Please sign in to comment.