Changeset - 1fefc484a66f
[Not reviewed]
0 2 0
HanzZ - 14 years ago 2011-11-01 22:53:10
hanzz.k@gmail.com
spectrum2_manager does not depend on libtransport
2 files changed with 4 insertions and 8 deletions:
0 comments (0 inline, 0 general)
spectrum_manager/src/CMakeLists.txt
Show inline comments
 
cmake_minimum_required(VERSION 2.6)
 
FILE(GLOB SRC *.cpp)
 
 
ADD_EXECUTABLE(spectrum2_manager ${SRC})
 
ADD_EXECUTABLE(spectrum2_manager ${SRC} ../../src/config.cpp)
 
 
target_link_libraries(spectrum2_manager transport)
 
target_link_libraries(spectrum2_manager ${Boost_LIBRARIES} ${SWIFTEN_LIBRARY})
 
 
INSTALL(TARGETS spectrum2_manager RUNTIME DESTINATION bin)
 
spectrum_manager/src/main.cpp
Show inline comments
 
#include "managerconfig.h"
 
#include "transport/transport.h"
 
#include "transport/usermanager.h"
 
#include "transport/logger.h"
 
#include "transport/sqlite3backend.h"
 
#include "transport/userregistration.h"
 
#include "transport/networkpluginserver.h"
 
#include "transport/config.h"
 
#include "Swiften/Swiften.h"
 
#include "Swiften/EventLoop/SimpleEventLoop.h"
 
 
#include <boost/foreach.hpp>
0 comments (0 inline, 0 general)