mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Issue an error when no platform is found
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
This commit is contained in:
parent
aaafaade5e
commit
b6eb865803
1 changed files with 19 additions and 11 deletions
|
@ -36,17 +36,26 @@ option(FTDISUPPORT "enable support for libftdi based serial" OFF)
|
||||||
option(MAKE_TESTS "Make the tests" ON)
|
option(MAKE_TESTS "Make the tests" ON)
|
||||||
|
|
||||||
SET(SUBSURFACE_TARGET_PLATFORM "Desktop" CACHE STRING "The target that Subsurface will be build")
|
SET(SUBSURFACE_TARGET_PLATFORM "Desktop" CACHE STRING "The target that Subsurface will be build")
|
||||||
SET_PROPERTY(CACHE SUBSURFACE_TARGET_PLATFORM PROPERTY STRINGS "Desktop" "Android" "iOS" "AndroidEmulator" "iOSEmulator")
|
LIST(APPEND SUBSURFACE_ACCEPTED_PLATFORMS "Desktop" "Android" "iOS" "AndroidEmulator" "iOSEmulator")
|
||||||
|
SET_PROPERTY(CACHE SUBSURFACE_TARGET_PLATFORM PROPERTY STRINGS ${SUBSURFACE_ACCEPTED_PLATFORMS})
|
||||||
|
|
||||||
#Extra features
|
#Extra features
|
||||||
option(SMARTTRAK_IMPORT "enable building SmartTrak divelogs import tool (requires glib2 and libmdb)" OFF)
|
option(SMARTTRAK_IMPORT "enable building SmartTrak divelogs import tool (requires glib2 and libmdb)" OFF)
|
||||||
|
|
||||||
if (NOT FBSUPPORT)
|
#verify if Platform is correct and warn on wxit with example.
|
||||||
set(DISABLE_PLUGINS ON)
|
list (FIND SUBSURFACE_ACCEPTED_PLATFORMS ${SUBSURFACE_TARGET_PLATFORM} _index)
|
||||||
|
if (${_index} EQUAL -1)
|
||||||
|
message(FATAL_ERROR "Requested platform not supported, please use one of the following:
|
||||||
|
${SUBSURFACE_ACCEPTED_PLATFORMS}
|
||||||
|
|
||||||
|
inputted value was: ${SUBSURFACE_TARGET_PLATFORM}
|
||||||
|
|
||||||
|
Example: -DSUBSURFACE_TARGET_PLATFORM=Desktop")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_definitions(-DSUBSURFACE_SOURCE="${CMAKE_SOURCE_DIR}")
|
add_definitions(-DSUBSURFACE_SOURCE="${CMAKE_SOURCE_DIR}")
|
||||||
|
|
||||||
|
#evenrything's correct, moving on.
|
||||||
set(CMAKE_MODULE_PATH
|
set(CMAKE_MODULE_PATH
|
||||||
${CMAKE_MODULE_PATH}
|
${CMAKE_MODULE_PATH}
|
||||||
${${PROJECT_NAME}_SOURCE_DIR}/cmake/Modules
|
${${PROJECT_NAME}_SOURCE_DIR}/cmake/Modules
|
||||||
|
@ -112,24 +121,22 @@ if(ANDROID)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# configure Qt.
|
# configure Qt.
|
||||||
if(SUBSURFACE_MOBILE)
|
if(ANDROID)
|
||||||
list(APPEND QT_EXTRA_COMPONENTS Quick)
|
list(APPEND QT_EXTRA_COMPONENTS AndroidExtras Quick)
|
||||||
list(APPEND QT_EXTRA_LIBRARIES Qt5::Quick)
|
list(APPEND QT_EXTRA_LIBRARIES Qt5::AndroidExtras Qt5::Quick)
|
||||||
add_definitions(-DSUBSURFACE_MOBILE)
|
add_definitions(-DSUBSURFACE_MOBILE)
|
||||||
endif()
|
endif()
|
||||||
if(ANDROID)
|
|
||||||
list(APPEND QT_EXTRA_COMPONENTS AndroidExtras)
|
|
||||||
list(APPEND QT_EXTRA_LIBRARIES Qt5::AndroidExtras)
|
|
||||||
endif()
|
|
||||||
if(BTSUPPORT)
|
if(BTSUPPORT)
|
||||||
list(APPEND QT_EXTRA_COMPONENTS Bluetooth)
|
list(APPEND QT_EXTRA_COMPONENTS Bluetooth)
|
||||||
list(APPEND QT_EXTRA_LIBRARIES Qt5::Bluetooth)
|
list(APPEND QT_EXTRA_LIBRARIES Qt5::Bluetooth)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
find_package(Qt5 REQUIRED COMPONENTS Core Concurrent Widgets Network Svg Test LinguistTools OOLCHAIN_LOCATION ${QT_EXTRA_COMPONENTS})
|
find_package(Qt5 REQUIRED COMPONENTS Core Concurrent Widgets Network Svg Test LinguistTools Positioning ${QT_EXTRA_COMPONENTS})
|
||||||
set(QT_LIBRARIES Qt5::Core Qt5::Concurrent Qt5::Widgets Qt5::Network Qt5::Svg Qt5::Positioning ${QT_EXTRA_LIBRARIES})
|
set(QT_LIBRARIES Qt5::Core Qt5::Concurrent Qt5::Widgets Qt5::Network Qt5::Svg Qt5::Positioning ${QT_EXTRA_LIBRARIES})
|
||||||
set(QT_TEST_LIBRARIES ${QT_LIBRARIES} Qt5::Test)
|
set(QT_TEST_LIBRARIES ${QT_LIBRARIES} Qt5::Test)
|
||||||
|
|
||||||
|
#disable bluetooth if Qt version is ancient.
|
||||||
if (BTSUPPORT AND "${Qt5Core_VERSION_STRING}" STRLESS "5.4.0")
|
if (BTSUPPORT AND "${Qt5Core_VERSION_STRING}" STRLESS "5.4.0")
|
||||||
set(BTSUPPORT OFF)
|
set(BTSUPPORT OFF)
|
||||||
message(STATUS "Turning off Bluetooth support as Qt version ${Qt5Core_VERSION_STRING} is insufficient for that")
|
message(STATUS "Turning off Bluetooth support as Qt version ${Qt5Core_VERSION_STRING} is insufficient for that")
|
||||||
|
@ -140,6 +147,7 @@ if(BTSUPPORT)
|
||||||
add_definitions(-DBT_SUPPORT)
|
add_definitions(-DBT_SUPPORT)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
#set up the subsurface_link_libraries variable
|
||||||
set(SUBSURFACE_LINK_LIBRARIES ${SUBSURFACE_LINK_LIBRARIES} ${LIBDIVECOMPUTER_LIBRARIES} ${LIBGIT2_LIBRARIES} ${LIBUSB_LIBRARIES})
|
set(SUBSURFACE_LINK_LIBRARIES ${SUBSURFACE_LINK_LIBRARIES} ${LIBDIVECOMPUTER_LIBRARIES} ${LIBGIT2_LIBRARIES} ${LIBUSB_LIBRARIES})
|
||||||
|
|
||||||
# set up the different target platforms
|
# set up the different target platforms
|
||||||
|
|
Loading…
Reference in a new issue