mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 01:06:00 +08:00
20 lines
824 B
CMake
20 lines
824 B
CMake
option(SPINE_SANITIZE "Build with sanitization" OFF)
|
|
option(SPINE_SET_COMPILER_FLAGS "Set compiler flags" ON)
|
|
|
|
if (NOT SPINE_SET_COMPILER_FLAGS)
|
|
return()
|
|
endif()
|
|
|
|
if(MSVC)
|
|
message("MSCV detected")
|
|
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_CRT_SECURE_NO_WARNINGS")
|
|
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D_CRT_SECURE_NO_WARNINGS")
|
|
else()
|
|
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -pedantic -Wno-unused-parameter -std=c99")
|
|
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wnon-virtual-dtor -pedantic -Wno-unused-parameter -std=c++11 -fno-exceptions -fno-rtti")
|
|
if (${SPINE_SANITIZE})
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address -fsanitize=undefined")
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address -fsanitize=undefined")
|
|
endif()
|
|
endif()
|