X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2FCMakeLists.txt;h=32b5370883cbee41d7a17bd39cce2d2e97574111;hb=d438145b28f34b7fdbc7e290aa001e5f3f922207;hp=1deac5200d2893368adf9d7c3b3b80a798c0e2f2;hpb=16f22647e6890d3eb8c3e94f7a0700e12fa29e44;p=quassel.git diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 1deac520..32b53708 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -1,6 +1,7 @@ # Builds the common module set(SOURCES + abstractsignalwatcher.h aliasmanager.cpp authhandler.cpp backlogmanager.cpp @@ -10,10 +11,13 @@ set(SOURCES bufferviewconfig.cpp bufferviewmanager.cpp compressor.cpp + coreinfo.cpp ctcpevent.cpp dccconfig.cpp event.cpp eventmanager.cpp + expressionmatch.cpp + # expressionmatchtests.cpp highlightrulemanager.cpp identity.cpp ignorelistmanager.cpp @@ -23,11 +27,13 @@ set(SOURCES irclisthelper.cpp ircuser.cpp logger.cpp + logmessage.cpp message.cpp messageevent.cpp network.cpp networkconfig.cpp networkevent.cpp + nickhighlightmatcher.cpp peer.cpp peerfactory.cpp presetnetworks.cpp @@ -35,16 +41,19 @@ set(SOURCES remotepeer.cpp settings.cpp signalproxy.cpp + singleton.h syncableobject.cpp transfer.cpp transfermanager.cpp + types.cpp util.cpp + serializers/serializers.cpp + protocols/datastream/datastreampeer.cpp protocols/legacy/legacypeer.cpp # needed for automoc - coreinfo.h irccap.h protocol.h ) @@ -79,13 +88,13 @@ if (APPLE) endif() if (WIN32) - set(SOURCES ${SOURCES} logbacktrace_win.cpp) + set(SOURCES ${SOURCES} logbacktrace_win.cpp windowssignalwatcher.cpp) else() if (EXECINFO_FOUND) add_definitions(-DHAVE_EXECINFO) include_directories(${EXECINFO_INCLUDES}) endif() - set(SOURCES ${SOURCES} logbacktrace_unix.cpp) + set(SOURCES ${SOURCES} logbacktrace_unix.cpp posixsignalwatcher.cpp) endif() qt_add_resources(SOURCES ${COMMON_RCS})