blob: 36d7d705261e16ecf8b43cf511a906f2f6895df4 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
set(cflags ${cflags} -Og)
else()
set(cflags ${cflags} -O3)
endif()
include("${CMAKE_CURRENT_LIST_DIR}/fetch-libfixmath.cmake")
add_subdirectory(libfixmath)
|