mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-22 09:15:18 +00:00
Chris Josten
b9b08ab384
This disables some application level logic, but I'm going to rewrite that using Lager anyway.
31 lines
841 B
CMake
31 lines
841 B
CMake
cmake_minimum_required(VERSION 3.11)
|
|
project(harbour-sailfin)
|
|
set (CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/")
|
|
set(CMAKE_AUTOMOC ON)
|
|
cmake_policy(SET CMP0048 NEW)
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
# Options
|
|
option(PLATFORM_SAILFISHOS "Build SailfishOS version of application" OFF)
|
|
option(PLATFORM_QTQUICK "Build QtQuick version of application" ON)
|
|
|
|
if (NOT SAILFIN_VERSION)
|
|
set(SAILFIN_VERSION "1.0.0")
|
|
endif()
|
|
|
|
if(PLATFORM_SAILFISHOS)
|
|
# Hardcode this less?
|
|
set(CMAKE_INSTALL_LIBDIR "${CMAKE_INSTALL_PREFIX}/share/harbour-sailfin/lib")
|
|
endif()
|
|
|
|
add_subdirectory(core)
|
|
if(PLATFORM_SAILFISHOS)
|
|
add_subdirectory(sailfish)
|
|
elseif(PLATFORM_QTQUICK)
|
|
add_subdirectory(qtquick)
|
|
endif()
|
|
|
|
include(FeatureSummary)
|
|
feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
|