cmake_minimum_required(VERSION 3.0) 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 ) include(compiler) set(SRC_LIST ${CMAKE_CURRENT_SOURCE_DIR}/crypter.h ${CMAKE_CURRENT_SOURCE_DIR}/crypter.cpp ${CMAKE_CURRENT_SOURCE_DIR}/scopeguard.h ${CMAKE_CURRENT_SOURCE_DIR}/scopeguard.cpp ) link_directories( ${CMAKE_BINARY_DIR}/lib ) include(library) add_libraries( ${Qt5Core_LIBRARIES} crypto logger ) include(installation) install_component()