mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 11:10:52 +00:00
Fixed up websocket_remote/CMakeLists.txt to work on macOS (and hopefully Linux)
This commit is contained in:
parent
a367a0471e
commit
fe38d9268d
@ -79,6 +79,7 @@ add_subdirectory(src/contrib/oggdecoder)
|
||||
add_subdirectory(src/contrib/nomaddecoder)
|
||||
add_subdirectory(src/contrib/flacdecoder)
|
||||
add_subdirectory(src/contrib/nullout)
|
||||
add_subdirectory(src/contrib/websocket_remote)
|
||||
|
||||
add_dependencies(taglibreader taglib)
|
||||
|
||||
@ -112,6 +113,7 @@ if (CMAKE_SYSTEM_NAME MATCHES "Linux")
|
||||
bin/plugins/libnomaddecoder.so
|
||||
bin/plugins/liboggdecoder.so
|
||||
bin/plugins/libtaglibreader.so
|
||||
bin/plugins/libwebsocket_remote.so
|
||||
DESTINATION share/musikcube/plugins
|
||||
)
|
||||
else (CMAKE_SYSTEM_NAME MATCHES "Linux")
|
||||
@ -125,6 +127,7 @@ else (CMAKE_SYSTEM_NAME MATCHES "Linux")
|
||||
bin/plugins/libnomaddecoder.dylib
|
||||
bin/plugins/liboggdecoder.dylib
|
||||
bin/plugins/libtaglibreader.dylib
|
||||
bin/plugins/libwebsocket_remote.dylib
|
||||
DESTINATION share/musikcube/plugins
|
||||
)
|
||||
endif (CMAKE_SYSTEM_NAME MATCHES "Linux")
|
||||
|
@ -18,9 +18,8 @@ set (BOOST_LINK_LIBS ${Boost_LIBRARIES})
|
||||
set (websocket_remote_LINK_LIBS ${BOOST_LINK_LIBS})
|
||||
|
||||
include_directories (
|
||||
"${websocket_remote_SOURCE_DIR}"
|
||||
"${websocket_remote_SOURCE_DIR}/3rdparty/include"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/include"
|
||||
)
|
||||
|
||||
add_library(websocket_remote SHARED ${plugin_SOURCES})
|
||||
add_library(websocket_remote SHARED ${websocket_remote_SOURCES})
|
||||
target_link_libraries(websocket_remote ${websocket_remote_LINK_LIBS})
|
Loading…
Reference in New Issue
Block a user