X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2FCMakeLists.txt;h=41721bde8d5b8c122e5fcb442678bfe1a18cc6c4;hp=5f3d1f545ce4739c422418c28c93ebad80ce9c50;hb=2f83cb6d01ff68131528797020637887fe0e77b7;hpb=48151f63e7f953bf07828be39ba314095c472c74 diff --git a/src/client/CMakeLists.txt b/src/client/CMakeLists.txt index 5f3d1f54..41721bde 100644 --- a/src/client/CMakeLists.txt +++ b/src/client/CMakeLists.txt @@ -1,8 +1,54 @@ -SET(client_SRCS buffer.cpp buffertreemodel.cpp client.cpp clientsettings.cpp treemodel.cpp) -SET(client_HDRS ) -SET(client_MOCS buffer.h buffertreemodel.h client.h clientsettings.h treemodel.h) +# Builds the client module -QT4_WRAP_CPP(_MOC ${client_MOCS}) +# We still have some minor deps to QtUi: QItemSelectionModel +# set(QT_DONT_USE_QTGUI 1) +set(QT_USE_QTNETWORK 1) +set(QT_USE_QTDBUS 1) +include(${QT_USE_FILE}) + +set(SOURCES + buffer.cpp + buffermodel.cpp + buffersettings.cpp + client.cpp + clientbacklogmanager.cpp + clientirclisthelper.cpp + clientsettings.cpp + clientsyncer.cpp + irclistmodel.cpp + mappedselectionmodel.cpp + networkmodel.cpp + selectionmodelsynchronizer.cpp + treemodel.cpp) + +set(MOC_HDRS + buffer.h + buffermodel.h + client.h + clientbacklogmanager.h + clientcoreinfo.h + clientirclisthelper.h + clientsyncer.h + irclistmodel.h + networkmodel.h + mappedselectionmodel.h + quasselui.h + selectionmodelsynchronizer.h + treemodel.h) + +set(HEADERS + buffersettings.h + clientsettings.h) + +if(SPUTDEV) + set(SOURCES ${SOURCES} messagefilter.cpp messagemodel.cpp) + set(MOC_HDRS ${MOC_HDRS} messagefilter.h messagemodel.h) +endif(SPUTDEV) + +qt4_wrap_cpp(MOC ${MOC_HDRS}) + +include_directories(${CMAKE_SOURCE_DIR}/src/common) + +add_library(mod_client STATIC ${SOURCES} ${MOC} ${HEADERS}) +add_dependencies(mod_client mod_common) -ADD_LIBRARY(client ${client_SRCS} ${_MOC}) -TARGET_LINK_LIBRARIES(client common) \ No newline at end of file