X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2FCMakeLists.txt;h=8ec2bed83c3a191c2393b06a58c8a62a7797a57b;hb=cd4f987d0d8ace10272bf1d87c788b741a9e85e8;hp=52560a12bfbd1fd30e395ed17cd9d574e3fe7ef0;hpb=bc544f569faedea50c7715844a2261872796c683;p=quassel.git diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 52560a12..8ec2bed8 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -9,11 +9,12 @@ set(SOURCES buffersyncer.cpp bufferviewconfig.cpp bufferviewmanager.cpp - cliparser.cpp compressor.cpp ctcpevent.cpp + dccconfig.cpp event.cpp eventmanager.cpp + highlightrulemanager.cpp identity.cpp ignorelistmanager.cpp internalpeer.cpp @@ -37,15 +38,25 @@ set(SOURCES 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 ) +if (USE_QT5) + list(APPEND SOURCES qt5cliparser.cpp) +else() + list(APPEND SOURCES cliparser.cpp) +endif() if (QCA2_FOUND OR QCA2-QT5_FOUND) set(SOURCES ${SOURCES} keyevent.cpp) @@ -58,13 +69,17 @@ else() set(SOURCES ${SOURCES} ../../3rdparty/miniz/miniz.c) endif() +if (USE_QT4) + set(SOURCES ${SOURCES} ../../3rdparty/sha512/sha512.c) +endif() + if (HAVE_SYSLOG) add_definitions(-DHAVE_SYSLOG) endif() -if(APPLE) - set(SOURCES ${SOURCES} mac_utils.cpp) -endif(APPLE) +if (APPLE) + set(SOURCES ${SOURCES} mac_utils.cpp) +endif() if (WIN32) set(SOURCES ${SOURCES} logbacktrace_win.cpp) @@ -81,11 +96,15 @@ qt_add_resources(SOURCES ${COMMON_RCS}) add_library(mod_common STATIC ${SOURCES}) qt_use_modules(mod_common Core Network) -if(APPLE) - target_link_libraries(mod_common "-framework CoreServices" "-framework CoreFoundation") -endif(APPLE) +if (APPLE) + target_link_libraries(mod_common "-framework CoreServices" "-framework CoreFoundation") +endif() + +target_link_libraries(mod_common ${CMAKE_DL_LIBS} ${EXECINFO_LIBRARIES}) -target_link_libraries(mod_common ${CMAKE_DL_LIBS} ${EXECINFO_LIBRARIES} ${ZLIB_LIBRARIES}) +if(ZLIB_FOUND) + target_link_libraries(mod_common ${ZLIB_LIBRARIES}) +endif() # This is needed so translations are generated before trying to build the qrc. # Should probably find a nicer solution with proper dependencies between the involved files, though...