squawk/core/CMakeLists.txt

47 lines
1.2 KiB
CMake
Raw Normal View History

2019-03-29 17:54:34 +03:00
cmake_minimum_required(VERSION 3.0)
project(squawkCORE)
set(CMAKE_AUTOMOC ON)
find_package(Qt5Core CONFIG REQUIRED)
find_package(Qt5Gui CONFIG REQUIRED)
2019-03-29 17:54:34 +03:00
find_package(Qt5Network CONFIG REQUIRED)
find_package(Qt5Xml CONFIG REQUIRED)
2019-03-29 17:54:34 +03:00
set(squawkCORE_SRC
squawk.cpp
account.cpp
2019-04-16 01:35:09 +03:00
archive.cpp
rosteritem.cpp
contact.cpp
2019-08-21 12:35:07 +03:00
conference.cpp
storage.cpp
networkaccess.cpp
2019-11-05 21:55:21 +03:00
adapterFuctions.cpp
2020-04-28 23:35:52 +03:00
handlers/messagehandler.cpp
2020-06-15 00:23:43 +03:00
handlers/rosterhandler.cpp
2019-03-29 17:54:34 +03:00
)
add_subdirectory(passwordStorageEngines)
2019-03-29 17:54:34 +03:00
# Tell CMake to create the helloworld executable
add_library(squawkCORE ${squawkCORE_SRC})
if(SYSTEM_QXMPP)
get_target_property(QXMPP_INTERFACE_INCLUDE_DIRECTORIES QXmpp::QXmpp INTERFACE_INCLUDE_DIRECTORIES)
target_include_directories(squawkCORE PUBLIC ${QXMPP_INTERFACE_INCLUDE_DIRECTORIES})
endif()
2019-03-29 17:54:34 +03:00
# Use the Widgets module from Qt 5.
target_link_libraries(squawkCORE Qt5::Core)
target_link_libraries(squawkCORE Qt5::Network)
target_link_libraries(squawkCORE Qt5::Gui)
target_link_libraries(squawkCORE Qt5::Xml)
2019-03-29 17:54:34 +03:00
target_link_libraries(squawkCORE qxmpp)
2019-04-16 01:35:09 +03:00
target_link_libraries(squawkCORE lmdb)
target_link_libraries(squawkCORE simpleCrypt)
if (WITH_KWALLET)
target_link_libraries(squawkCORE kwalletPSE)
endif()