mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-21 23:38:54 -04:00
3fa20f4cf3
+ add some more output to make it easier to find possible issues with the new layout --HG-- branch : trunk
20 lines
478 B
CMake
20 lines
478 B
CMake
add_definitions(-fno-delete-null-pointer-checks)
|
|
|
|
if( USE_SFMT)
|
|
add_definitions(-msse2)
|
|
message(STATUS "- GCC: SFMT enabled, SSE2 flag forced")
|
|
endif()
|
|
|
|
if( WITH_WARNINGS )
|
|
add_definitions(-Wall -Wfatal-errors -Wextra)
|
|
message(STATUS "- GCC: All warnings enabled")
|
|
else()
|
|
add_definitions(--no-warnings)
|
|
message(STATUS "- GCC: All warnings disabled")
|
|
endif()
|
|
|
|
if( WITH_COREDEBUG )
|
|
add_definitions(-ggdb3)
|
|
message(STATUS "- GCC: Debug-flags set (-ggdb3)")
|
|
endif()
|