X-Git-Url: https://vaikene.ee/gitweb/pswgen11.html?a=blobdiff_plain;f=src%2Flibs%2FCommon%2FCMakeLists.txt;h=c5083a39a4406268b96ae2fccad634fa54438a3c;hb=HEAD;hp=31fc6347508b042b5ed2e560bde73675126bee52;hpb=be0e791df48f5a8c9bb4c16f65b62e41e1149552;p=evaf diff --git a/src/libs/Common/CMakeLists.txt b/src/libs/Common/CMakeLists.txt index 31fc634..c5083a3 100644 --- a/src/libs/Common/CMakeLists.txt +++ b/src/libs/Common/CMakeLists.txt @@ -1,10 +1,6 @@ # Name of the target set(TARGET CommonLib) -# Qt modules -set(QT_DONT_USE_QTGUI TRUE) -include(${QT_USE_FILE}) - # Needed for exporting/importing symbols add_definitions(-DCOMMON_LIBRARY) @@ -16,13 +12,35 @@ set(eVaf_LIBRARIES) # Source files set(SRCS - app.cpp - event.cpp + app.h + config.cpp + config.h eventqueue.cpp + eventqueue.h globals.cpp + globals.h + iapp.h + iconfig.h + ieventqueue.h + ilogger.h + inifile.h + iprop.h + iregistry.h + libcommon.h + logger.h + prop.cpp + prop.h + app.cpp + event.h + event.cpp + inifile_p.h + inifile.cpp logger.cpp registry.cpp + registry.h util.cpp + util.h + version.h ) # Header files for the meta-object compiler @@ -31,21 +49,27 @@ set(MOC_HDRS ieventqueue.h ilogger.h iregistry.h + iconfig.h + iprop.h app.h eventqueue.h logger.h registry.h + config.h + prop.h ) # Version info resource file for Windows builds -if(WIN32) +if(WIN32 AND NOT MINGW) set(SRCS ${SRCS} version.rc) -endif(WIN32) +endif(WIN32 AND NOT MINGW) -qt4_wrap_cpp(MOC_SRCS ${MOC_HDRS}) +qt5_wrap_cpp(MOC_SRCS ${MOC_HDRS}) add_library(${TARGET} SHARED ${SRCS} ${MOC_SRCS}) -target_link_libraries(${TARGET} ${QT_LIBRARIES} ${eVaf_LIBRARIES}) +qt5_use_modules(${TARGET} Core) + +target_link_libraries(${TARGET} ${eVaf_LIBRARIES}) install(TARGETS ${TARGET} DESTINATION bin)