Files
OpenSpace/ext/CMakeLists.txt
Alexander Bock 125f54aa0a Update nlohmann repository (#3609)
* Remove old non-submodule version of nlohmann in favor of submodule
* Update nlohmann from 3.9.1 to 3.12.0
- Already disable implicit conversions in preparation for next major version
2025-04-16 14:13:20 +02:00

90 lines
4.3 KiB
CMake

##########################################################################################
# #
# OpenSpace #
# #
# Copyright (c) 2014-2025 #
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy of this #
# software and associated documentation files (the "Software"), to deal in the Software #
# without restriction, including without limitation the rights to use, copy, modify, #
# merge, publish, distribute, sublicense, and/or sell copies of the Software, and to #
# permit persons to whom the Software is furnished to do so, subject to the following #
# conditions: #
# #
# The above copyright notice and this permission notice shall be included in all copies #
# or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, #
# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A #
# PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT #
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF #
# CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE #
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #
##########################################################################################
# System libraries
if (APPLE)
begin_dependency("Core Libraries")
add_library(external-system-apple INTERFACE)
target_include_directories(external-system-apple INTERFACE "/Developer/Headers/FlatCarbon")
find_library(COREFOUNDATION_LIBRARY CoreFoundation REQUIRED)
find_library(CARBON_LIBRARY Carbon REQUIRED)
find_library(COCOA_LIBRARY Cocoa REQUIRED) # This was Carbon before
find_library(APP_SERVICES_LIBRARY ApplicationServices REQUIRED)
find_library(APPKIT_LIBRARY AppKit REQUIRED)
mark_as_advanced(COREFOUNDATION_LIBRARY CARBON_LIBRARY COCOA_LIBRARY
APP_SERVICES_LIBRARY APPKIT_LIBRARY
)
target_link_libraries(external-system-apple INTERFACE # This was PUBLIC before
${CARBON_LIBRARY} ${COREFOUNDATION_LIBRARY}
${COCOA_LIBRARY} ${APP_SERVICES_LIBRARY}
${APPKIT_LIBRARY}
)
end_dependency()
endif ()
# Ghoul
if (NOT OPENSPACE_HAVE_TESTS)
# Unless overriden, disable ghoul tests if OpenSpace tests are disabled
set(GHOUL_HAVE_TESTS FALSE CACHE BOOL "Enable ghoul unit tests")
endif()
add_subdirectory(ghoul)
if (TARGET GhoulTest)
set_target_properties(GhoulTest PROPERTIES FOLDER "Unit Tests")
endif ()
# Spice
begin_dependency("Spice")
set(SPICE_BUILD_SHARED_LIBRARY OFF CACHE BOOL "" FORCE)
add_subdirectory(spice SYSTEM)
target_compile_features(spice PUBLIC cxx_std_20)
set_target_properties(spice PROPERTIES FOLDER "External")
end_dependency()
# nlohmann
begin_dependency("nlohmann")
add_subdirectory(json)
end_dependency()
# Curl
begin_dependency("CURL")
if (WIN32)
add_library(external-curl SHARED IMPORTED GLOBAL)
target_include_directories(external-curl INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/curl/include)
set_property(TARGET external-curl PROPERTY IMPORTED_IMPLIB ${CMAKE_CURRENT_SOURCE_DIR}/curl/lib/libcurl.lib)
set_property(TARGET external-curl PROPERTY IMPORTED_LOCATION
${CMAKE_CURRENT_SOURCE_DIR}/curl/lib/libcurl.dll
${CMAKE_CURRENT_SOURCE_DIR}/curl/lib/libeay32.dll
${CMAKE_CURRENT_SOURCE_DIR}/curl/lib/ssleay32.dll
)
else ()
find_package(CURL)
if (CURL_FOUND)
add_library(external-curl INTERFACE)
target_include_directories(external-curl INTERFACE ${CURL_INCLUDE_DIRS})
target_link_libraries(external-curl INTERFACE ${CURL_LIBRARIES})
endif ()
endif ()
end_dependency()