X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2FCMakeLists.txt;h=32b5370883cbee41d7a17bd39cce2d2e97574111;hb=a65f42197839da536975b3e2858eedcef420035f;hp=a0227561ca44ed3854934b56ea0b4551c2b37770;hpb=be04b68a0f10891b81c07cdda204a9abc0ac56a7;p=quassel.git diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index a0227561..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,14 @@ 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 internalpeer.cpp @@ -22,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 @@ -34,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 ) @@ -78,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})