mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 00:42:08 +00:00
- fixed Linux linking issue
libraries/zmusic/libzmusic.a(i_module.cpp.o): undefined reference to symbol 'dlclose@@GLIBC_2.2.5'
This commit is contained in:
parent
3a522091b9
commit
9a235bebb6
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ add_library( zmusic STATIC
|
||||||
zmusic/zmusic.cpp
|
zmusic/zmusic.cpp
|
||||||
${PLAT_SOURCES}
|
${PLAT_SOURCES}
|
||||||
)
|
)
|
||||||
target_link_libraries( zmusic dumb gme timidityplus)
|
target_link_libraries( zmusic dumb gme timidityplus "${CMAKE_DL_LIBS}" )
|
||||||
|
|
||||||
if( NOT DYN_SNDFILE AND SNDFILE_FOUND )
|
if( NOT DYN_SNDFILE AND SNDFILE_FOUND )
|
||||||
include_directories( "${SNDFILE_INCLUDE_DIRS}" )
|
include_directories( "${SNDFILE_INCLUDE_DIRS}" )
|
||||||
|
|
Loading…
Reference in a new issue