squawk/core/CMakeLists.txt

30 lines
718 B
CMake
Raw Normal View History

2019-03-29 14:54:34 +00:00
cmake_minimum_required(VERSION 3.0)
project(squawkCORE)
# Instruct CMake to run moc automatically when needed.
2019-04-15 22:35:09 +00:00
set (CMAKE_CXX_STANDARD 17)
2019-03-29 14:54:34 +00:00
set(CMAKE_AUTOMOC ON)
find_package(Qt5Widgets CONFIG REQUIRED)
find_package(Qt5Network CONFIG REQUIRED)
set(squawkCORE_SRC
squawk.cpp
account.cpp
2019-04-15 22:35:09 +00:00
archive.cpp
rosteritem.cpp
contact.cpp
2019-03-29 14:54:34 +00:00
)
# Tell CMake to create the helloworld executable
add_library(squawkCORE ${squawkCORE_SRC})
# Use the Widgets module from Qt 5.
target_link_libraries(squawkCORE Qt5::Core)
target_link_libraries(squawkCORE Qt5::Network)
target_link_libraries(squawkCORE qxmpp)
2019-04-15 22:35:09 +00:00
target_link_libraries(squawkCORE lmdb)
2019-03-29 14:54:34 +00:00
# Install the executable
install(TARGETS squawkCORE DESTINATION lib)