Patronum/CMakeLists.txt

22 lines
574 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.
#
cmake_minimum_required(VERSION 3.1)
project(Potronum)
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
include(Patronum/qt-solutions/CMake/ccache.cmake)
# Add sub directories
add_subdirectory(Patronum)
include(Patronum/qt-solutions/CMake/QuasarAppCITargets.cmake)
initAll()