Patronum/CMakeLists.txt

25 lines
674 B
CMake
Raw Normal View History

2020-04-17 21:55:54 +03:00
#
2020-04-18 21:29:33 +03:00
# Copyright (C) 2018-2020 QuasarApp.
2020-04-17 21:55:54 +03:00
# Distributed under the lgplv3 software license, see the accompanying
# Everyone is permitted to copy and distribute verbatim copies
# of this license document, but changing it is not allowed.
#
2020-05-03 20:36:20 +03:00
cmake_minimum_required(VERSION 3.10)
2020-05-06 23:23:46 +03:00
project(Patronum LANGUAGES CXX)
2020-04-19 18:00:28 +03:00
if(TARGET ${PROJECT_NAME})
message("The ${PROJECT_NAME} arledy included in main Project")
return()
endif()
2020-04-17 21:55:54 +03:00
2020-04-26 15:13:41 +03:00
include(Patronum/QuasarAppLib/CMake/ccache.cmake)
2020-04-17 21:55:54 +03:00
# Add sub directories
add_subdirectory(Patronum)
2020-05-06 23:23:46 +03:00
add_subdirectory(Tests)
2020-04-17 21:55:54 +03:00
2020-04-26 15:13:41 +03:00
include(Patronum/QuasarAppLib/CMake/QuasarAppCITargets.cmake)
addDoc("Patronum" ${CMAKE_CURRENT_SOURCE_DIR}/doxygen.conf)
2020-04-17 21:55:54 +03:00
initAll()