Hanoi-Towers/CMakeLists.txt

117 lines
2.4 KiB
CMake
Raw Normal View History

2020-03-31 12:00:43 +03:00
#
# Copyright (C) 2018-2021 QuasarApp.
2020-03-31 12:00:43 +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-05-03 20:38:35 +03:00
project(HanoiTowers)
2020-03-31 12:00:43 +03:00
2020-10-23 14:15:58 +03:00
set(BUILD_SHARED_LIBS ON)
2021-04-12 12:30:24 +03:00
2021-04-20 18:42:04 +03:00
include(submodules/Heart/QuasarAppLib/CMake/QuasarApp.cmake)
2021-04-12 17:25:05 +03:00
include(submodules/Heart/QuasarAppLib/CMake/Version.cmake)
2021-04-12 12:30:24 +03:00
2021-04-12 12:25:45 +03:00
if (DEFINED TARGET_PLATFORM_TOOLCHAIN)
if (${TARGET_PLATFORM_TOOLCHAIN} STREQUAL "wasm32")
initAll()
return()
endif()
endif()
2021-05-04 14:11:52 +03:00
if (NOT DEFINED ONLINE_FUNCTIONS)
set(ONLINE_FUNCTIONS OFF)
endif()
if(ONLINE_FUNCTIONS)
add_definitions(-DONLINE_FUNCTIONS)
endif()
2021-04-12 17:25:05 +03:00
if (NOT DEFINED HANOI_TESTS)
set(HANOI_TESTS ON)
if (ANDROID)
set(HANOI_TESTS OFF)
endif()
endif()
if (NOT DEFINED HANOI_SERVER)
set(HANOI_SERVER ON)
if (ANDROID OR WIN32)
set(HANOI_SERVER OFF)
endif()
2021-05-04 14:11:52 +03:00
if (ONLINE_FUNCTIONS)
set(HANOI_SERVER OFF)
endif()
2021-04-12 17:25:05 +03:00
endif()
if (NOT DEFINED HANOI_CLIENT)
set(HANOI_CLIENT ON)
endif()
SET(INSTALLER_DIR "${CMAKE_CURRENT_SOURCE_DIR}/installer/")
SET(DATA_DIR "${INSTALLER_DIR}/packages/HanoiTowers/data")
2020-04-09 21:47:05 +03:00
SET(TARGET_DIR "${CMAKE_CURRENT_SOURCE_DIR}/Distro")
2020-05-20 12:01:22 +03:00
SET(PRODUCT_VER_Mj 1)
SET(PRODUCT_VER_Mn 6)
SET(PRODUCT_VER_Re 0)
2020-05-04 11:58:54 +03:00
file(MAKE_DIRECTORY ${TARGET_DIR})
2020-05-09 00:42:29 +03:00
initAll()
2021-04-12 12:24:02 +03:00
addDoc(${PROJECT_NAME} ${CMAKE_CURRENT_SOURCE_DIR}/doxygen.conf)
2020-05-09 00:42:29 +03:00
2021-04-12 12:27:06 +03:00
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED)
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Core REQUIRED)
2020-04-21 21:31:05 +03:00
# Add sub directories
2021-04-12 17:25:05 +03:00
if (HANOI_TESTS)
set (CREDITS_TESTS ON)
set (HEART_TESTS ON)
set (PATRONUM_TESTS ON)
else()
set (CREDITS_TESTS OFF)
set (HEART_TESTS OFF)
set (PATRONUM_TESTS OFF)
endif()
add_subdirectory(submodules/Heart)
add_subdirectory(HanoiTowers/Protockol)
if (HANOI_CLIENT)
set (CREDITS_EXAMPLES OFF)
set (LOGINVIEW_EXAMPLES OFF)
set (VIEWSOLUTIONS_EXAMPLES OFF)
add_subdirectory(submodules/QMLLoginView)
add_subdirectory(submodules/SimpleQmlNotify)
add_subdirectory(submodules/ViewSolutions)
add_subdirectory(submodules/Credits)
2021-05-06 17:15:22 +03:00
if (ANDROID)
add_subdirectory(submodules/QtAndroidTools)
endif()
2021-04-12 17:25:05 +03:00
add_subdirectory(HanoiTowers/client)
2021-05-06 17:15:22 +03:00
2021-04-12 17:25:05 +03:00
endif()
if (HANOI_SERVER)
add_subdirectory(submodules/Patronum)
add_subdirectory(HanoiTowers/Server)
endif()
2020-05-24 02:24:49 +03:00
2020-10-23 14:15:58 +03:00
2020-04-21 21:31:05 +03:00