Make stuff work
This commit is contained in:
parent
c3a654efe9
commit
b099578957
@ -55,8 +55,6 @@ find_package(CXXTerminal REQUIRED)
|
||||
find_package(StringVariable REQUIRED)
|
||||
|
||||
find_package(yaml-cpp REQUIRED)
|
||||
set(LIBEVENT_STATIC_LINK TRUE)
|
||||
find_package(Libevent REQUIRED)
|
||||
find_package(jsoncpp REQUIRED)
|
||||
find_package(Ed25519 REQUIRED)
|
||||
find_package(DataPipes REQUIRED)
|
||||
@ -65,6 +63,12 @@ find_package(spdlog REQUIRED)
|
||||
find_package(Jemalloc REQUIRED)
|
||||
find_package(Protobuf REQUIRED)
|
||||
|
||||
# LibEvent fucks up the CMAKE_FIND_LIBRARY_SUFFIXES variable
|
||||
function(find_event)
|
||||
set(LIBEVENT_STATIC_LINK TRUE)
|
||||
find_package(Libevent REQUIRED)
|
||||
endfunction()
|
||||
find_event()
|
||||
|
||||
#FIXME: Use module for this
|
||||
include_directories(${ed25519_INCLUDE_DIR})
|
||||
|
2
music
2
music
@ -1 +1 @@
|
||||
Subproject commit a0a2a454d3847325c5b1ee14c1c98610c4d470e1
|
||||
Subproject commit 6bdb628586efd7f61c6746391c664c335b8b6d44
|
@ -256,7 +256,7 @@ target_link_libraries(TeaSpeakServer
|
||||
${YAML_CPP_LIBRARIES}
|
||||
pthread
|
||||
stdc++fs
|
||||
event_static event_pthreads
|
||||
libevent::core libevent::pthreads
|
||||
opus::static
|
||||
yaml-cpp
|
||||
${LIBRARY_PATH_PROTOBUF}
|
||||
|
2
shared
2
shared
@ -1 +1 @@
|
||||
Subproject commit 239c6e69f949c245cafea1081630b787e075f764
|
||||
Subproject commit deeba1b73ebdc4aaa07c36b9c0b97e21511356df
|
Loading…
Reference in New Issue
Block a user