mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-25 10:25:17 +00:00
Chris Josten
895731ae38
- Removed "jellyfin" prefix from files, as they are already in a directory named Jellyfin - Split the former "jellyfinitem.{h,cpp}" into multiple files in the DTO directory, one for each class. The jellyfinitem files started to become enormous. - Use forward declarations in headers instead of including files wherever possible. - Updated copyright headers
23 lines
638 B
CMake
23 lines
638 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)
|
|
|
|
# Options
|
|
option(PLATFORM_SAILFISHOS "Build SailfishOS version of application" OFF)
|
|
option(PLATFORM_QTQUICK "Build QtQuick version of application" ON)
|
|
|
|
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()
|