Don't link against swiften-config stuff
This commit is contained in:
parent
8b9a06aa72
commit
269240db77
3 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@ FILE(GLOB HEADERS *.h)
|
|||
QT4_WRAP_CPP(SRC ${HEADERS})
|
||||
ADD_EXECUTABLE(spectrum_libircclient-qt_backend ${SRC})
|
||||
|
||||
target_link_libraries(spectrum_libircclient-qt_backend ${IRC_LIBRARY} ${QT_LIBRARIES} transport)
|
||||
target_link_libraries(spectrum_libircclient-qt_backend ${IRC_LIBRARY} ${QT_LIBRARIES} transport -lpthread -lssl -lidn -lxml2)
|
||||
|
||||
INSTALL(TARGETS spectrum_libircclient-qt_backend RUNTIME DESTINATION bin)
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ FILE(GLOB SRC *.cpp)
|
|||
|
||||
ADD_EXECUTABLE(spectrum_libpurple_backend ${SRC})
|
||||
|
||||
target_link_libraries(spectrum_libpurple_backend ${PURPLE_LIBRARY} ${GLIB2_LIBRARIES} ${EVENT_LIBRARIES} transport)
|
||||
target_link_libraries(spectrum_libpurple_backend ${PURPLE_LIBRARY} ${GLIB2_LIBRARIES} ${EVENT_LIBRARIES} transport -lpthread -lssl -lidn -lxml2)
|
||||
|
||||
INSTALL(TARGETS spectrum_libpurple_backend RUNTIME DESTINATION bin)
|
||||
|
||||
|
|
|
@ -55,8 +55,8 @@ bool Config::load(const std::string &configfile, boost::program_options::options
|
|||
("database.prefix", value<std::string>()->default_value(""), "Prefix of tables in database")
|
||||
;
|
||||
|
||||
// store(parse_config_file(ifs, opts), m_variables);
|
||||
// notify(m_variables);
|
||||
store(parse_config_file(ifs, opts), m_variables);
|
||||
notify(m_variables);
|
||||
|
||||
m_file = configfile;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue