X-Git-Url: https://vaikene.ee/gitweb/gitweb.cgi?p=evaf;a=blobdiff_plain;f=src%2Fapps%2FScosTime%2FCMakeLists.txt;fp=src%2Fapps%2FScosTime%2FCMakeLists.txt;h=c56fb72c3b576954f2a2458191203978a1c1d4f3;hp=0000000000000000000000000000000000000000;hb=84f796df7f84e8e13efb68bbe1cb9f5c804c2228;hpb=fd3633df6c6a527ea2af8a4beddcf17f06eccc34 diff --git a/src/apps/ScosTime/CMakeLists.txt b/src/apps/ScosTime/CMakeLists.txt new file mode 100644 index 0000000..c56fb72 --- /dev/null +++ b/src/apps/ScosTime/CMakeLists.txt @@ -0,0 +1,41 @@ +# Name of the target +set(TARGET ScosTime) + +# Qt modules +include(${QT_USE_FILE}) + +# Include files +include_directories(${eVaf_INCLUDE}) + +# Required eVaf libraries +set(eVaf_LIBRARIES CommonLib PluginsLib GuiLib) + +# Source files +set(SRCS + gui.cpp +) + +# Header files for the meta-object compiler +set(MOC_HDRS + gui.h +) + +# Resources +#set(RCCS +# gui.qrc +#) + +# Version info resource file for Windows builds +if(WIN32 AND NOT MINGW) + set(SRCS ${SRCS} version.rc) +endif(WIN32 AND NOT MINGW) + +qt4_add_resources(RCC_SRCS ${RCCS}) + +qt4_wrap_cpp(MOC_SRCS ${MOC_HDRS}) + +add_library(${TARGET} SHARED ${SRCS} ${MOC_SRCS} ${RCC_SRCS}) + +target_link_libraries(${TARGET} ${QT_LIBRARIES} ${eVaf_LIBRARIES}) + +install(TARGETS ${TARGET} DESTINATION bin)