X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2FCMakeLists.txt;h=4491f568b4da0d277bfa1256272c01f65bbfe07f;hp=c69ec2a4d19e5519e92c7ad0af100d972210d739;hb=b55d0de3c731948432ddb2851fe728c4edff374c;hpb=5c6804f291a63f978e328aeddcc8448e3443b45e diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index c69ec2a4..4491f568 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -16,6 +16,7 @@ set(SOURCES corebufferviewconfig.cpp corebufferviewmanager.cpp corecoreinfo.cpp + coreircchannel.cpp coreirclisthelper.cpp corenetwork.cpp coresession.cpp @@ -39,6 +40,7 @@ set(MOC_HDRS corebufferviewconfig.h corebufferviewmanager.h corecoreinfo.h + coreircchannel.h coreirclisthelper.h corenetwork.h coresession.h @@ -60,9 +62,10 @@ if(HAVE_SSL) include_directories(${OPENSSL_INCLUDE_DIR}) endif(HAVE_SSL) -QT4_WRAP_CPP(MOC ${MOC_HDRS}) +qt4_wrap_cpp(MOC ${MOC_HDRS}) +qt4_add_resources(RC_SQL sql.qrc) include_directories(${CMAKE_SOURCE_DIR}/src/common) -add_library(mod_core STATIC ${SOURCES} ${MOC} ${HEADERS}) +add_library(mod_core STATIC ${SOURCES} ${MOC} ${HEADERS} ${RC_SQL}) add_dependencies(mod_core mod_common)