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.
|
|
|
|
#
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.1)
|
2020-04-19 18:21:17 +03:00
|
|
|
project(PotronumMain)
|
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-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()
|