1
0
mirror of https://github.com/strawberrymusicplayer/strawberry synced 2025-01-27 23:59:53 +01:00
2018-02-27 18:06:05 +01:00

10 lines
287 B
CMake

# Hacky stuff to make C++11 features work with old compilers.
if (CMAKE_COMPILER_IS_GNUCC)
execute_process(COMMAND ${CMAKE_CXX_COMPILER} -dumpversion
OUTPUT_VARIABLE GCC_VERSION)
if (GCC_VERSION VERSION_LESS 4.7)
add_definitions(-Doverride=)
endif()
endif()