2014-05-20 12:35:27 -04:00
|
|
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Execute these commands in this directory:
|
|
|
|
|
#
|
|
|
|
|
# 1. mkdir build/; cd build/
|
|
|
|
|
#
|
|
|
|
|
# 2. Choose compiler:
|
|
|
|
|
# Build with native toolchain:
|
|
|
|
|
# cmake -DCMAKE_BUILD_TYPE=Debug ..
|
|
|
|
|
#
|
|
|
|
|
# Build with mingw:
|
|
|
|
|
# cmake -DCMAKE_TOOLCHAIN_FILE=../CMakeLists_mingw.txt -DCMAKE_BUILD_TYPE=Debug ..
|
|
|
|
|
#
|
|
|
|
|
# 3. make
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# project title
|
|
|
|
|
set (PROJECT openrct2)
|
|
|
|
|
# OpenRCT2 resource directory
|
|
|
|
|
set (ORCT2_RESOURCE_DIR ${CMAKE_INSTALL_PREFIX}/share/${PROJECT}/)
|
|
|
|
|
|
|
|
|
|
project(${PROJECT})
|
|
|
|
|
|
|
|
|
|
add_definitions(-DORCT2_RESOURCE_DIR="${ORCT2_RESOURCE_DIR}")
|
2014-09-05 21:56:42 -04:00
|
|
|
|
add_definitions(-DHAVE_CONFIG_H)
|
2015-05-25 15:38:33 -04:00
|
|
|
|
add_definitions(-DCURL_STATICLIB)
|
2015-09-24 16:47:14 -04:00
|
|
|
|
|
|
|
|
|
INCLUDE(FindPkgConfig)
|
|
|
|
|
|
2015-08-03 19:08:42 -04:00
|
|
|
|
option(DISABLE_HTTP_TWITCH "Disable HTTP and Twitch support.")
|
|
|
|
|
if (DISABLE_HTTP_TWITCH)
|
|
|
|
|
add_definitions(-DDISABLE_HTTP -DDISABLE_TWITCH)
|
|
|
|
|
endif (DISABLE_HTTP_TWITCH)
|
2015-05-25 15:38:33 -04:00
|
|
|
|
|
2015-08-18 03:30:55 -04:00
|
|
|
|
option(DISABLE_NETWORK "Disable multiplayer functionality. Mainly for testing.")
|
|
|
|
|
if (DISABLE_NETWORK)
|
|
|
|
|
add_definitions(-DDISABLE_NETWORK)
|
2015-09-28 18:01:51 -04:00
|
|
|
|
else (DISABLE_NETWORK)
|
|
|
|
|
if (WIN32)
|
|
|
|
|
SET(NETWORKLIBS ${NETWORKLIBS} ws2_32)
|
|
|
|
|
endif (WIN32)
|
2015-08-18 03:30:55 -04:00
|
|
|
|
endif (DISABLE_NETWORK)
|
|
|
|
|
|
2015-10-30 06:00:35 -04:00
|
|
|
|
set(DEBUG_LEVEL 0 CACHE STRING "Select debug level for compilation. Use value in range 0–3.")
|
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDEBUG=${DEBUG_LEVEL}")
|
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DDEBUG=${DEBUG_LEVEL}")
|
|
|
|
|
|
2014-10-06 14:41:43 -04:00
|
|
|
|
# include lib
|
|
|
|
|
include_directories("lib/")
|
2014-05-24 07:22:01 -04:00
|
|
|
|
# add source files
|
2015-10-03 08:57:02 -04:00
|
|
|
|
file(GLOB_RECURSE ORCT2_SOURCES "src/*.c" "src/*.cpp" "lib/argparse/*.c" "lib/cutest/*.c" "lib/lodepng/*.c")
|
2015-12-12 18:15:38 -05:00
|
|
|
|
if (APPLE)
|
|
|
|
|
file(GLOB_RECURSE ORCT2_MM_SOURCES "src/*.m")
|
|
|
|
|
set_source_files_properties(${ORCT2_MM_SOURCES} PROPERTIES COMPILE_FLAGS "-x objective-c -fmodules")
|
|
|
|
|
endif (APPLE)
|
2014-05-20 12:35:27 -04:00
|
|
|
|
|
|
|
|
|
if (UNIX)
|
|
|
|
|
# force 32bit build for now and set necessary flags to compile code as is
|
2015-12-08 18:36:38 -05:00
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -m32 -std=gnu99 -fno-omit-frame-pointer -fno-pie")
|
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m32 -std=gnu++11 -fno-omit-frame-pointer -fno-pie")
|
2015-12-06 18:28:50 -05:00
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m32")
|
2015-08-18 03:30:55 -04:00
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS ${CMAKE_SHARED_LINKER_FLAGS})
|
2014-05-20 12:35:27 -04:00
|
|
|
|
endif (UNIX)
|
|
|
|
|
|
2015-09-24 16:47:14 -04:00
|
|
|
|
# find and include SDL2
|
|
|
|
|
PKG_CHECK_MODULES(SDL2 REQUIRED sdl2 SDL2_ttf)
|
2015-10-03 08:57:02 -04:00
|
|
|
|
|
2015-12-15 19:30:11 -05:00
|
|
|
|
if (NOT DISABLE_HTTP_TWITCH)
|
|
|
|
|
PKG_CHECK_MODULES(LIBCURL REQUIRED libcurl)
|
|
|
|
|
PKG_CHECK_MODULES(JANSSON REQUIRED jansson)
|
|
|
|
|
SET(HTTPLIBS ${LIBCURL_LIBRARIES} ${JANSSON_LIBRARIES})
|
|
|
|
|
if (WIN32)
|
|
|
|
|
SET(HTTPLIBS ${HTTPLIBS} ssl crypto winmm.lib ws2_32)
|
|
|
|
|
endif (WIN32)
|
|
|
|
|
endif (NOT DISABLE_HTTP_TWITCH)
|
|
|
|
|
|
2015-10-03 08:57:02 -04:00
|
|
|
|
# speex v1.1.15 is supplied in our zipped library, but distributions provide
|
|
|
|
|
# updated version, with required functions extracted out to libspeexdsp.
|
|
|
|
|
# This largely takes care of the problem
|
|
|
|
|
if (WIN32)
|
|
|
|
|
include_directories("lib/libspeex/")
|
|
|
|
|
file(GLOB_RECURSE SPEEX_SOURCES "lib/libspeex/*.c")
|
|
|
|
|
else (WIN32)
|
|
|
|
|
PKG_CHECK_MODULES(SPEEX REQUIRED speexdsp)
|
|
|
|
|
endif (WIN32)
|
|
|
|
|
|
2015-10-03 17:55:23 -04:00
|
|
|
|
# Include libdl for dlopen
|
|
|
|
|
if (UNIX)
|
|
|
|
|
set(DLLIB dl)
|
|
|
|
|
endif (UNIX)
|
|
|
|
|
|
2015-10-03 08:57:02 -04:00
|
|
|
|
INCLUDE_DIRECTORIES(${SDL2_INCLUDE_DIRS} ${LIBCURL_INCLUDE_DIRS} ${JANSSON_INCLUDE_DIRS} ${SPEEX_INCLUDE_DIRS})
|
2015-09-24 16:47:14 -04:00
|
|
|
|
|
|
|
|
|
LINK_DIRECTORIES(${SDL2_LIBRARY_DIRS} ${JANSSON_LIBRARY_DIRS} ${LIBCURL_LIBRARY_DIRS})
|
2015-09-20 17:19:38 -04:00
|
|
|
|
|
2015-08-04 16:39:44 -04:00
|
|
|
|
if (WIN32)
|
|
|
|
|
# build as library for now, replace with add_executable
|
2015-10-03 08:57:02 -04:00
|
|
|
|
add_library(${PROJECT} SHARED ${ORCT2_SOURCES} ${SPEEX_SOURCES})
|
2015-08-04 16:39:44 -04:00
|
|
|
|
else (WIN32)
|
2015-12-12 18:15:38 -05:00
|
|
|
|
add_executable(${PROJECT} ${ORCT2_SOURCES} ${ORCT2_MM_SOURCES})
|
2015-11-11 07:57:29 -05:00
|
|
|
|
add_custom_command(
|
|
|
|
|
OUTPUT g2.dat
|
|
|
|
|
COMMAND ./openrct2 sprite build ${CMAKE_BINARY_DIR}/g2.dat ${CMAKE_CURRENT_SOURCE_DIR}/resources/g2/
|
|
|
|
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
|
|
|
|
|
)
|
|
|
|
|
add_custom_target(g2 DEPENDS ${PROJECT} g2.dat)
|
2015-08-04 16:39:44 -04:00
|
|
|
|
endif (WIN32)
|
2014-05-24 07:22:01 -04:00
|
|
|
|
|
2015-11-30 03:19:01 -05:00
|
|
|
|
if (APPLE)
|
|
|
|
|
FIND_LIBRARY(ICONV_LIBRARIES NAMES iconv libiconv libiconv-2 c)
|
|
|
|
|
TARGET_LINK_LIBRARIES(${PROJECT} ${ICONV_LIBRARIES})
|
|
|
|
|
endif (APPLE)
|
|
|
|
|
|
2015-12-15 19:30:11 -05:00
|
|
|
|
# Handle creating the rct2 text and data files on OS X and Linux
|
|
|
|
|
# See details in src/openrct2.c:openrct2_setup_rct2_segment for how the values
|
|
|
|
|
# were derived.
|
|
|
|
|
if (UNIX)
|
2015-12-08 22:06:21 -05:00
|
|
|
|
add_custom_command(
|
|
|
|
|
OUTPUT openrct2_text
|
|
|
|
|
COMMAND dd if=${CMAKE_CURRENT_SOURCE_DIR}/openrct2.exe of=${CMAKE_BINARY_DIR}/openrct2_text bs=4096 skip=1 count=1187
|
|
|
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/openrct2.exe
|
|
|
|
|
)
|
|
|
|
|
add_custom_command(
|
|
|
|
|
OUTPUT openrct2_data
|
|
|
|
|
COMMAND dd if=${CMAKE_CURRENT_SOURCE_DIR}/openrct2.exe of=${CMAKE_BINARY_DIR}/openrct2_data bs=4096 skip=1188 count=318
|
|
|
|
|
COMMAND dd if=/dev/zero of=${CMAKE_BINARY_DIR}/openrct2_data bs=4096 seek=318 count=2630 conv=notrunc
|
|
|
|
|
COMMAND dd if=${CMAKE_CURRENT_SOURCE_DIR}/openrct2.exe of=${CMAKE_BINARY_DIR}/openrct2_data bs=4096 skip=1506 seek=2948 count=1 conv=notrunc
|
|
|
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/openrct2.exe
|
|
|
|
|
)
|
|
|
|
|
add_custom_target(segfiles DEPENDS openrct2_text openrct2_data)
|
|
|
|
|
add_dependencies(${PROJECT} segfiles)
|
2015-12-15 19:30:11 -05:00
|
|
|
|
if (APPLE)
|
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -sectcreate rct2_text __text ${CMAKE_CURRENT_SOURCE_DIR}/build/openrct2_text -sectcreate rct2_data __data ${CMAKE_CURRENT_SOURCE_DIR}/build/openrct2_data -segaddr rct2_data 0x8a4000 -segprot rct2_data rwx rwx -segaddr rct2_text 0x401000 -segprot rct2_text rwx rwx -fno-pie -read_only_relocs suppress")
|
|
|
|
|
else (APPLE)
|
|
|
|
|
# For Linux we have to use objcopy to wrap regular binaries into a linkable
|
|
|
|
|
# format. We use specific section names which are then referenced in a
|
|
|
|
|
# bespoke linker script so they can be placed at predefined VMAs.
|
|
|
|
|
add_custom_command(
|
|
|
|
|
OUTPUT openrct2_text_section.o
|
|
|
|
|
COMMAND objcopy --input binary --output elf32-i386 --binary-architecture i386 openrct2_text openrct2_text_section.o --rename-section .data=.rct2_text,contents,alloc,load,readonly,code
|
|
|
|
|
DEPENDS segfiles
|
|
|
|
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
|
|
|
|
|
)
|
|
|
|
|
add_custom_command(
|
|
|
|
|
OUTPUT openrct2_data_section.o
|
|
|
|
|
COMMAND objcopy --input binary --output elf32-i386 --binary-architecture i386 openrct2_data openrct2_data_section.o --rename-section .data=.rct2_data,contents,alloc,load,readonly,data
|
|
|
|
|
DEPENDS segfiles
|
|
|
|
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
|
|
|
|
|
)
|
|
|
|
|
add_custom_target(linkable_sections DEPENDS openrct2_text_section.o openrct2_data_section.o)
|
|
|
|
|
add_dependencies(${PROJECT} linkable_sections)
|
|
|
|
|
SET_SOURCE_FILES_PROPERTIES(
|
|
|
|
|
openrct2_text_section.o openrct2_data_section.o
|
|
|
|
|
PROPERTIES
|
|
|
|
|
EXTERNAL_OBJECT true
|
|
|
|
|
GENERATED true
|
|
|
|
|
)
|
|
|
|
|
# can't use GLOB here, as the files don't exist yet at cmake-time
|
|
|
|
|
list(APPEND RCT2_SECTIONS "${CMAKE_BINARY_DIR}/openrct2_data_section.o" "${CMAKE_BINARY_DIR}/openrct2_text_section.o")
|
2015-12-16 14:31:33 -05:00
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-T,\"${CMAKE_CURRENT_SOURCE_DIR}/distribution/linux/ld_script.xc\"")
|
2015-12-15 19:30:11 -05:00
|
|
|
|
endif (APPLE)
|
|
|
|
|
endif (UNIX)
|
2015-12-08 22:06:21 -05:00
|
|
|
|
|
2014-05-24 07:22:01 -04:00
|
|
|
|
# install into ${CMAKE_INSTALL_PREFIX}/bin/
|
|
|
|
|
#install (TARGETS ${PROJECT} DESTINATION bin)
|
|
|
|
|
|
|
|
|
|
# libopenrct2.dll -> openrct2.dll
|
|
|
|
|
set_target_properties(${PROJECT} PROPERTIES PREFIX "")
|
|
|
|
|
|
2015-12-15 19:30:11 -05:00
|
|
|
|
TARGET_LINK_LIBRARIES(${PROJECT} ${SDL2_LIBRARIES} ${ORCTLIBS_LIB} ${HTTPLIBS} ${NETWORKLIBS} ${SPEEX_LIBRARIES} ${DLLIB} ${RCT2_SECTIONS})
|