From 6ccefb0ca35abcabdee20c76375bff6398d5d369 Mon Sep 17 00:00:00 2001 From: casey langen Date: Sat, 17 Oct 2020 19:53:26 -0700 Subject: [PATCH] Fixed unix compile --- CMakeLists.txt | 2 +- src/musikcore/CMakeLists.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 97456ee0e..e256e0e48 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,7 +46,7 @@ set (EXECUTABLE_OUTPUT_PATH ${musikcube_SOURCE_DIR}/bin) link_directories ("${musikcube_SOURCE_DIR}/bin/plugins") -set(COMMON_LINK_LIBS ${BOOST_LINK_LIBS} curl pthread crypto) +set(COMMON_LINK_LIBS ${BOOST_LINK_LIBS} curl pthread ssl crypto) if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR CMAKE_SYSTEM_NAME MATCHES "OpenBSD") set (musikcube_LINK_LIBS ${COMMON_LINK_LIBS}) diff --git a/src/musikcore/CMakeLists.txt b/src/musikcore/CMakeLists.txt index 44998f585..9e803d042 100644 --- a/src/musikcore/CMakeLists.txt +++ b/src/musikcore/CMakeLists.txt @@ -51,6 +51,7 @@ set(CORE_SOURCES ./library/track/LibraryTrack.cpp ./library/track/Track.cpp ./library/track/TrackList.cpp + ./net/RawWebSocketClient.cpp ./net/WebSocketClient.cpp ./plugin/PluginFactory.cpp ./plugin/Plugins.cpp