mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-24 05:11:08 +00:00
cmake: disable debug symbols for openmpt
This commit is contained in:
parent
4037d04994
commit
c1023b54ee
1 changed files with 3 additions and 0 deletions
3
thirdparty/CMakeLists.txt
vendored
3
thirdparty/CMakeLists.txt
vendored
|
@ -492,6 +492,9 @@ if(NOT "${SRB2_CONFIG_SYSTEM_LIBRARIES}")
|
||||||
# -DLIBOPENMPT_BUILD
|
# -DLIBOPENMPT_BUILD
|
||||||
configure_file("openmpt_svn_version.h" "svn_version.h")
|
configure_file("openmpt_svn_version.h" "svn_version.h")
|
||||||
add_library(openmpt "${SRB2_INTERNAL_LIBRARY_TYPE}" ${openmpt_SOURCES} ${CMAKE_CURRENT_BINARY_DIR}/svn_version.h)
|
add_library(openmpt "${SRB2_INTERNAL_LIBRARY_TYPE}" ${openmpt_SOURCES} ${CMAKE_CURRENT_BINARY_DIR}/svn_version.h)
|
||||||
|
if("${CMAKE_C_COMPILER_ID}" STREQUAL GNU OR "${CMAKE_C_COMPILER_ID}" STREQUAL Clang OR "${CMAKE_C_COMPILER_ID}" STREQUAL AppleClang)
|
||||||
|
target_compile_options(openmpt PRIVATE "-g0")
|
||||||
|
endif()
|
||||||
if("${CMAKE_SYSTEM_NAME}" STREQUAL Windows)
|
if("${CMAKE_SYSTEM_NAME}" STREQUAL Windows)
|
||||||
target_link_libraries(openmpt PRIVATE Rpcrt4)
|
target_link_libraries(openmpt PRIVATE Rpcrt4)
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in a new issue