Fixed bad argument in compile args

This commit is contained in:
Ryzerth
2021-03-01 17:39:39 +01:00
parent 9f0262fc05
commit a24972843e
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ if (MSVC)
set(CMAKE_CXX_FLAGS "-O2 /std:c++17 /EHsc")
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
else()
set(CMAKE_CXX_FLAGS "-g -O3 -std=c++17 -fpermissive")
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -fpermissive")
endif (MSVC)
add_definitions(-DSDRPP_IS_CORE)