Skip to content

Commit ae6829f

Browse files
committed
Drop Swiften dependency from backends
1 parent c049627 commit ae6829f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+618
-812
lines changed

CMakeLists.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ option(ENABLE_PURPLE "Build Libpurple plugin" ON)
4040
option(ENABLE_SMSTOOLS3 "Build SMSTools3 plugin" ON)
4141
option(ENABLE_XMPP "Build XMPP plugin" ON)
4242
option(ENABLE_WEBUI "Build Web UI" ON)
43-
43+
option(ENABLE_SLACK_FRONTEND "Build Slack frontend" OFF)
4444
option(ENABLE_DOCS "Build Docs" ON)
4545
# option(ENABLE_LOG "Build with logging using Log4cxx" ON)
4646
option(ENABLE_TESTS "Build Tests using CppUnit" OFF)
@@ -98,6 +98,8 @@ if(WIN32)
9898
link_directories("$ENV{CMAKE_PREFIX_PATH}/lib")
9999
endif(WIN32)
100100

101+
find_package( Threads )
102+
101103
set(Boost_FIND_QUIETLY ON)
102104
find_package(Boost COMPONENTS program_options date_time system filesystem regex thread locale REQUIRED)
103105

backends/frotz/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ file(GLOB SRC *.c *.cpp)
55
add_executable(spectrum2_frotz_backend ${SRC})
66

77

8-
target_link_libraries(spectrum2_frotz_backend transport pthread ${Boost_LIBRARIES} ${SWIFTEN_LIBRARY} ${LOG4CXX_LIBRARIES})
8+
target_link_libraries(spectrum2_frotz_backend transport ${Boost_LIBRARIES} ${LOG4CXX_LIBRARIES})
99

1010
install(TARGETS spectrum2_frotz_backend RUNTIME DESTINATION ${CMAKE_INSTALL_LIBEXECDIR})

0 commit comments

Comments
 (0)