Heart/CMakeLists.txt

66 lines
1.5 KiB
CMake

#
# Copyright (C) 2018-2021 QuasarApp.
# 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.10)
project(Heart)
if(TARGET ${PROJECT_NAME})
message("The ${PROJECT_NAME} arledy included in main Project")
return()
endif()
if (DEFINED TARGET_PLATFORM_TOOLCHAIN)
if (${TARGET_PLATFORM_TOOLCHAIN} STREQUAL "wasm32")
include(QuasarAppLib/CMake/QuasarAppCITargets.cmake)
initAll()
return()
endif()
endif()
if(NOT DEFINED HEART_BUILD_LVL)
set(HEART_BUILD_LVL 1)
endif()
if (NOT DEFINED HEART_TESTS)
set(HEART_TESTS ON)
if (ANDROID)
set(HEART_TESTS OFF)
add_definitions(HEART_TESTS OFF)
endif()
endif()
if (NOT DEFINED HEART_DB_CACHE)
set(HEART_DB_CACHE OFF)
if (ANDROID OR WIN32)
set(HEART_DB_CACHE OFF)
endif()
endif()
if (HEART_DB_CACHE)
add_definitions(-DHEART_DB_CACHE)
endif()
include(QuasarAppLib/CMake/ccache.cmake)
# Add sub directories
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core Network Sql Concurrent REQUIRED)
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Core Network Sql Concurrent REQUIRED)
add_subdirectory(QuasarAppLib)
add_subdirectory(Heart)
if (HEART_TESTS)
add_subdirectory(HeartTests)
endif()
include(QuasarAppLib/CMake/QuasarAppCITargets.cmake)
initAll()
addDoc(${PROJECT_NAME} ${CMAKE_CURRENT_SOURCE_DIR}/doxygen.conf)