mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
56d54cf60e
CMake works on all our supported platforms, like MSVC, Mingw, GCC, Clang, and many more. It allows for a single way of doing things, so no longer we need shell scripts and vbs scripts to work on all our supported platforms. Additionally, CMake allows to generate project files for like MSVC, KDevelop, etc. This heavily reduces the lines of code we need to support multiple platforms from a project perspective. Addtiionally, this heavily improves our detection of libraries, etc.
15 lines
390 B
CMake
15 lines
390 B
CMake
# Add the definitions to indicate which endian we are building for.
|
|
#
|
|
# add_endian_definition()
|
|
#
|
|
function(add_endian_definition)
|
|
include(TestBigEndian)
|
|
TEST_BIG_ENDIAN(IS_BIG_ENDIAN)
|
|
|
|
if (IS_BIG_ENDIAN)
|
|
add_definitions(-DTTD_ENDIAN=TTD_BIG_ENDIAN)
|
|
else (IS_BIG_ENDIAN)
|
|
add_definitions(-DTTD_ENDIAN=TTD_LITTLE_ENDIAN)
|
|
endif (IS_BIG_ENDIAN)
|
|
endfunction()
|