mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 11:10:52 +00:00
Update -rpath usage.
This commit is contained in:
parent
eb742d252c
commit
c10b957689
@ -1,3 +1,7 @@
|
||||
0.96.9
|
||||
|
||||
* fixed `-rpath` to use `$ORIGIN` instead of `./` to appease `Feodra 35`.
|
||||
|
||||
0.96.8
|
||||
|
||||
* updated `FfmpegDecoder` to perform resampling internally when `WasapiOutput`
|
||||
|
@ -9,6 +9,6 @@ endif()
|
||||
|
||||
add_executable(core_c_demo ${CORE_C_DEMO_SRCS})
|
||||
|
||||
set_target_properties(core_c_demo PROPERTIES LINK_FLAGS "-Wl,-rpath,./")
|
||||
set_target_properties(core_c_demo PROPERTIES LINK_FLAGS "-Wl,-rpath,$ORIGIN")
|
||||
|
||||
target_link_libraries(core_c_demo ${musikcube_LINK_LIBS} musikcore)
|
||||
|
@ -79,7 +79,7 @@ configure_file("musikcube.in" "musikcube" @ONLY)
|
||||
add_executable(musikcube ${CUBE_SRCS})
|
||||
add_definitions(-DNCURSES_WIDECHAR)
|
||||
|
||||
set_target_properties(musikcube PROPERTIES LINK_FLAGS "-Wl,-rpath,./")
|
||||
set_target_properties(musikcube PROPERTIES LINK_FLAGS "-Wl,-rpath,$ORIGIN")
|
||||
|
||||
if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
||||
if (${LINK_STATICALLY} MATCHES "true")
|
||||
|
@ -12,7 +12,7 @@ endif()
|
||||
configure_file("musikcubed.in" "musikcubed" @ONLY)
|
||||
add_executable(musikcubed ${DAEMON_SRCS})
|
||||
|
||||
set_target_properties(musikcubed PROPERTIES LINK_FLAGS "-Wl,-rpath,./")
|
||||
set_target_properties(musikcubed PROPERTIES LINK_FLAGS "-Wl,-rpath,$ORIGIN")
|
||||
|
||||
if (${LINK_STATICALLY} MATCHES "true")
|
||||
find_library(EVLIB NAMES libev.a ev)
|
||||
|
Loading…
Reference in New Issue
Block a user