X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2FCMakeLists.txt;h=f7b3ce110c94a6925861c06217750b16c6f7fae6;hb=358dabf8ebedacb89a2a124d2a1b6d2bb6ecc654;hp=9f799493e37232795d31d12611973cbf42e6ddd7;hpb=7897b8623a42967511e31c68d5c102033a1dcdb9;p=quassel.git diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 9f799493..f7b3ce11 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -18,14 +18,18 @@ set(SOURCES corebufferviewmanager.cpp corecoreinfo.cpp coreidentity.cpp + coreignorelistmanager.cpp coreircchannel.cpp coreirclisthelper.cpp corenetwork.cpp + corenetworkconfig.cpp coresession.cpp coresettings.cpp coreusersettings.cpp ctcphandler.cpp ircserverhandler.cpp + netsplit.cpp + postgresqlstorage.cpp sessionthread.cpp sqlitestorage.cpp storage.cpp @@ -43,12 +47,16 @@ set(MOC_HDRS corebufferviewmanager.h corecoreinfo.h coreidentity.h + coreignorelistmanager.h coreircchannel.h coreirclisthelper.h corenetwork.h + corenetworkconfig.h coresession.h ctcphandler.h ircserverhandler.h + netsplit.h + postgresqlstorage.h sqlitestorage.h storage.h sessionthread.h @@ -65,9 +73,9 @@ if(HAVE_SSL) endif(HAVE_SSL) qt4_wrap_cpp(MOC ${MOC_HDRS}) -qt4_add_resources(RC_SQL sql.qrc) +set(CORE_RCS ${CORE_RCS} core/sql.qrc PARENT_SCOPE) include_directories(${CMAKE_SOURCE_DIR}/src/common) -add_library(mod_core STATIC ${SOURCES} ${MOC} ${HEADERS} ${RC_SQL}) +add_library(mod_core STATIC ${SOURCES} ${MOC} ${HEADERS}) add_dependencies(mod_core mod_common)