OpenRCT2/src/openrct2/CMakeLists.txt

177 lines
6.3 KiB
CMake
Raw Normal View History

# CMAKE project for libopenrct2 (core OpenRCT2 component)
cmake_minimum_required(VERSION 3.7)
if (CMAKE_BINARY_DIR STREQUAL CMAKE_SOURCE_DIR)
message(FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR}/CMakeCache.txt")
2017-03-25 02:40:16 +01:00
endif ()
2017-03-25 02:40:16 +01:00
# Needed for linking with non-broken OpenSSL on Apple platforms
if (APPLE)
set(ENV{PKG_CONFIG_PATH} "$ENV{PKG_CONFIG_PATH}:/usr/local/opt/openssl/lib/pkgconfig")
endif ()
# Third party libraries
if (MSVC)
find_package(jansson 2.5 REQUIRED)
find_package(png 1.6 REQUIRED)
find_package(zlib REQUIRED)
find_path(LIBZIP_INCLUDE_DIRS zip.h)
find_library(LIBZIP_LIBRARIES zip)
else ()
PKG_CHECK_MODULES(JANSSON REQUIRED jansson>=2.5)
PKG_CHECK_MODULES(LIBZIP REQUIRED libzip>=1.0)
PKG_CHECK_MODULES(ZLIB REQUIRED zlib)
PKG_CHECK_MODULES(PNG libpng>=1.6)
2017-03-25 02:40:16 +01:00
if (NOT PNG_FOUND)
PKG_CHECK_MODULES(PNG libpng16)
2017-03-25 02:40:16 +01:00
if (NOT PNG_FOUND)
PKG_CHECK_MODULES(PNG libpng>=1.2)
if (NOT PNG_FOUND)
PKG_CHECK_MODULES(PNG REQUIRED libpng12)
endif ()
2017-03-25 02:40:16 +01:00
endif ()
endif ()
endif ()
# Third party libraries (optional)
if (NOT DISABLE_HTTP_TWITCH OR NOT DISABLE_NETWORK)
if (MSVC)
find_package(curl REQUIRED)
set(LIBCURL_LIBRARIES ${CURL_LIBRARIES})
else ()
PKG_CHECK_MODULES(LIBCURL REQUIRED libcurl)
endif ()
2017-03-25 02:40:16 +01:00
endif ()
if (NOT DISABLE_NETWORK)
2017-05-15 00:11:55 +02:00
find_package(OpenSSL 1.0.0 REQUIRED)
2017-03-25 02:40:16 +01:00
endif ()
if (NOT DISABLE_TTF)
if (UNIX AND NOT APPLE AND NOT MSVC)
2017-05-29 10:47:52 +02:00
PKG_CHECK_MODULES(FONTCONFIG REQUIRED fontconfig)
endif ()
if (MSVC)
find_package(freetype REQUIRED)
else ()
PKG_CHECK_MODULES(FREETYPE REQUIRED freetype2)
endif ()
2017-03-25 02:40:16 +01:00
endif ()
# For unicode code page conversion.
find_package(ICU 59.0 REQUIRED COMPONENTS uc)
2017-03-24 21:52:07 +01:00
# Sources
2018-02-14 19:41:08 +01:00
file(GLOB_RECURSE OPENRCT2_CORE_SOURCES "${CMAKE_CURRENT_LIST_DIR}/*.cpp"
2017-03-24 21:52:07 +01:00
"${CMAKE_CURRENT_LIST_DIR}/*.h"
"${CMAKE_CURRENT_LIST_DIR}/*.hpp")
2017-03-25 02:40:16 +01:00
if (APPLE)
file(GLOB_RECURSE OPENRCT2_CORE_MM_SOURCES "${CMAKE_CURRENT_LIST_DIR}/*.mm")
set_source_files_properties(${OPENRCT2_CORE_MM_SOURCES} PROPERTIES COMPILE_FLAGS "-x objective-c++ -fmodules")
2017-03-25 02:40:16 +01:00
endif ()
2017-03-24 21:52:07 +01:00
# Outputs
set(PROJECT libopenrct2)
project(${PROJECT} CXX)
add_library(${PROJECT} ${OPENRCT2_CORE_SOURCES} ${OPENRCT2_CORE_MM_SOURCES} ${RCT2_SECTIONS})
2017-03-24 21:52:07 +01:00
set_target_properties(${PROJECT} PROPERTIES PREFIX "")
2017-03-25 02:40:16 +01:00
2017-03-25 00:11:29 +01:00
# Libraries
2017-03-25 02:40:16 +01:00
if (STATIC)
target_link_libraries(${PROJECT} ${JANSSON_STATIC_LIBRARIES}
2017-03-25 02:40:16 +01:00
${PNG_STATIC_LIBRARIES}
${ZLIB_STATIC_LIBRARIES}
${LIBZIP_STATIC_LIBRARIES}
${ICU_STATIC_LIBRARIES})
2017-03-25 02:40:16 +01:00
else ()
target_link_libraries(${PROJECT} ${JANSSON_LIBRARIES}
2017-03-25 02:40:16 +01:00
${PNG_LIBRARIES}
${ZLIB_LIBRARIES}
${LIBZIP_LIBRARIES}
${ICU_LIBRARIES})
2017-03-25 02:40:16 +01:00
endif ()
2017-03-25 00:11:29 +01:00
2017-03-25 02:40:16 +01:00
if (UNIX AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "BSD")
# Include libdl for dlopen
target_link_libraries(${PROJECT} dl)
endif ()
if (NOT DISABLE_NETWORK)
if (WIN32)
target_link_libraries(${PROJECT} ws2_32)
endif ()
# our HTTP implementation requires use of threads
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
target_link_libraries(${PROJECT} Threads::Threads)
2017-03-25 02:40:16 +01:00
if (STATIC)
target_link_libraries(${PROJECT} ${LIBCURL_STATIC_LIBRARIES}
${SSL_STATIC_LIBRARIES})
else ()
target_link_libraries(${PROJECT} ${LIBCURL_LIBRARIES}
2017-05-15 00:11:55 +02:00
${OPENSSL_LIBRARIES})
2017-03-25 02:40:16 +01:00
endif ()
endif ()
if (NOT APPLE AND NOT MINGW AND NOT MSVC)
# This is ugly hack to work around https://bugs.launchpad.net/ubuntu/+source/gcc-5/+bug/1568899.
# Once C++17 is enabled (and thus old compilers are no longer supported, this needs to be gone.
# We cannot simply detect the _compiler_ version, as the bug exists with the C++ _library_
target_link_libraries(${PROJECT} gcc_s gcc)
endif ()
2017-03-25 02:40:16 +01:00
if (NOT DISABLE_TTF)
if (STATIC)
target_link_libraries(${PROJECT} ${FREETYPE_STATIC_LIBRARIES})
2017-03-25 02:40:16 +01:00
if (UNIX AND NOT APPLE)
target_link_libraries(${PROJECT} ${FONTCONFIG_STATIC_LIBRARIES})
endif ()
else ()
target_link_libraries(${PROJECT} ${FREETYPE_LIBRARIES})
2017-03-25 02:40:16 +01:00
if (UNIX AND NOT APPLE)
target_link_libraries(${PROJECT} ${FONTCONFIG_LIBRARIES})
endif ()
endif ()
endif ()
2017-03-25 00:11:29 +01:00
2017-11-12 22:11:39 +01:00
if (HAVE_DISCORD_RPC)
target_link_libraries(libopenrct2 discord-rpc)
endif()
2017-03-24 21:52:07 +01:00
# Includes
target_include_directories(${PROJECT} SYSTEM PRIVATE ${LIBZIP_INCLUDE_DIRS})
2017-08-28 22:01:48 +02:00
target_include_directories(${PROJECT} PUBLIC ${JANSSON_INCLUDE_DIRS})
target_include_directories(${PROJECT} PRIVATE ${PNG_INCLUDE_DIRS}
2017-03-25 02:40:16 +01:00
${ZLIB_INCLUDE_DIRS})
if (NOT DISABLE_HTTP_TWITCH OR NOT DISABLE_NETWORK)
target_include_directories(${PROJECT} PRIVATE ${LIBCURL_INCLUDE_DIRS})
endif ()
if (NOT DISABLE_NETWORK)
2017-05-15 00:11:55 +02:00
target_include_directories(${PROJECT} PUBLIC ${OPENSSL_INCLUDE_DIR})
2017-03-25 02:40:16 +01:00
endif ()
if (NOT DISABLE_TTF)
target_include_directories(${PROJECT} PRIVATE ${FREETYPE_INCLUDE_DIRS})
if (UNIX AND NOT APPLE)
target_include_directories(${PROJECT} PRIVATE ${FONTCONFIG_INCLUDE_DIRS})
endif ()
2017-03-25 02:40:16 +01:00
endif ()
# To avoid unnecessary rebuilds set the current branch and
# short sha1 only for the two files that use these
# definitions: Version.cpp and Crash/Platform.cpp
set_property(SOURCE ${CMAKE_CURRENT_LIST_DIR}/Version.cpp
${CMAKE_CURRENT_LIST_DIR}/Crash/Platform.cpp PROPERTY
COMPILE_DEFINITIONS OPENRCT2_BRANCH="${OPENRCT2_BRANCH}")
if (NOT OPENRCT2_COMMIT_SHA1_SHORT STREQUAL "HEAD")
set_property(SOURCE ${CMAKE_CURRENT_LIST_DIR}/Version.cpp
2018-02-16 10:28:32 +01:00
${CMAKE_CURRENT_LIST_DIR}/Crash/Platform.cpp APPEND PROPERTY
COMPILE_DEFINITIONS OPENRCT2_COMMIT_SHA1_SHORT="${OPENRCT2_COMMIT_SHA1_SHORT}")
endif()
2017-12-19 23:02:04 +01:00
if((X86 OR X86_64) AND NOT MSVC)
set_source_files_properties(${CMAKE_CURRENT_LIST_DIR}/drawing/SSE41Drawing.cpp PROPERTIES COMPILE_FLAGS -msse4.1)
set_source_files_properties(${CMAKE_CURRENT_LIST_DIR}/drawing/AVX2Drawing.cpp PROPERTIES COMPILE_FLAGS -mavx2)
2017-12-19 23:02:04 +01:00
endif()