Files @ r24654:66b379079421
Branch filter:

Location: cpp/openttd-patchpack/source/cmake/Endian.cmake

Patric Stout
Change: darken the background of all graph to increase contrast (#8557)

Now lines like Mauve, Dark Green and Purple are much more visible
without hurting the other colours.
# 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()
        add_definitions(-DTTD_ENDIAN=TTD_LITTLE_ENDIAN)
    endif()
endfunction()