OpenRCT2/CMakeLists_mingw.txt

39 lines
1.5 KiB
Plaintext
Raw Normal View History

2015-09-20 12:02:09 +02:00
SET(ACTUAL_SYSTEM ${CMAKE_SYSTEM_NAME})
SET(CMAKE_SYSTEM_NAME Windows)
SET(COMPILER_PREFIX i686-w64-mingw32)
SET(CMAKE_C_COMPILER ${COMPILER_PREFIX}-gcc)
SET(CMAKE_CXX_COMPILER ${COMPILER_PREFIX}-c++)
SET(CMAKE_RC_COMPILER ${COMPILER_PREFIX}-windres)
SET(CMAKE_PKGCONFIG_EXECUTABLE ${COMPILER_PREFIX}-pkg-config)
SET(PKG_CONFIG_EXECUTABLE ${COMPILER_PREFIX}-pkg-config)
2014-05-20 18:35:27 +02:00
2014-05-21 00:07:57 +02:00
# potential flags to make code more similar to MSVC:
2014-05-27 23:24:09 +02:00
# -fshort-wchar -fshort-enums -mms-bitfields
2014-05-21 00:07:57 +02:00
#
set(CMAKE_C_FLAGS "-std=gnu99 -fpack-struct=1" CACHE STRING "" FORCE)
set(CMAKE_CXX_FLAGS "-std=c++0x -std=gnu++0x -fpack-struct=1" CACHE STRING "" FORCE)
2015-09-20 12:02:09 +02:00
if(${ACTUAL_SYSTEM} MATCHES "Linux")
2015-08-10 13:25:26 +02:00
set(CMAKE_SHARED_LINKER_FLAGS "-O3 -static-libgcc -static-libstdc++ -static -lpthread" CACHE STRING "" FORCE)
else()
set(CMAKE_SHARED_LINKER_FLAGS "-static-libgcc -static-libstdc++" CACHE STRING "" FORCE)
2015-09-20 12:02:09 +02:00
endif(${ACTUAL_SYSTEM} MATCHES "Linux")
2014-05-20 18:35:27 +02:00
if(APPLE)
2015-05-25 21:38:33 +02:00
SET(TARGET_ENVIRONMENT /usr/local/mingw-w32-bin_i686-darwin/i686-w64-mingw32)
else()
SET(TARGET_ENVIRONMENT /usr/i686-w64-mingw32)
endif(APPLE)
2014-05-20 18:35:27 +02:00
# here is the target environment located
SET(CMAKE_FIND_ROOT_PATH ${TARGET_ENVIRONMENT})
2014-05-20 18:35:27 +02:00
# adjust the default behaviour of the FIND_XXX() commands:
2014-05-24 05:16:52 +02:00
# search headers and libraries in the target environment, search
2014-05-20 18:35:27 +02:00
# programs in the host environment
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
# INCLUDE_DIRECTORIES(${ORCTLIBS_INCLUDE} ${JANSSON_INCLUDE})