OpenRCT2/CMakeLists_mingw.txt

37 lines
1.3 KiB
Plaintext
Raw Normal View History

2014-05-20 18:35:27 +02:00
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
#
2015-05-25 21:38:33 +02:00
set(CMAKE_C_FLAGS "-masm=intel -std=gnu99 -fpack-struct=1" CACHE STRING "" FORCE)
set(CMAKE_CXX_FLAGS "-masm=intel -std=c++0x -std=gnu++0x -fpack-struct=1" CACHE STRING "" FORCE)
set(CMAKE_SHARED_LINKER_FLAGS "-static-libgcc -static-libstdc++" CACHE STRING "" FORCE)
2014-05-20 18:35:27 +02:00
# find and include SDL2
INCLUDE(FindPkgConfig)
PKG_SEARCH_MODULE(SDL2 REQUIRED sdl2)
INCLUDE_DIRECTORIES(${SDL2_INCLUDE_DIRS})
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)