X-Git-Url: https://vaikene.ee/gitweb/gitweb.cgi?a=blobdiff_plain;f=src%2Fmain%2Fgui%2FCMakeLists.txt;fp=src%2Fmain%2Fgui%2FCMakeLists.txt;h=5339fea2025831e4b8b8413fc1907fcb8393b20d;hb=441d1b38e0900f56891f495a94a08dc8d48e0a32;hp=0000000000000000000000000000000000000000;hpb=f0483301fd77c091eb2e2cc3b4ac3b397a01d998;p=evaf diff --git a/src/main/gui/CMakeLists.txt b/src/main/gui/CMakeLists.txt new file mode 100644 index 0000000..5339fea --- /dev/null +++ b/src/main/gui/CMakeLists.txt @@ -0,0 +1,53 @@ +# Name of the target +set(TARGET eVafGUI) + +# Qt modules +set(QT_USE_QTMAIN TRUE) +include(${QT_USE_FILE}) + +# Include files +include_directories(${eVaf_INCLUDE}) + +# Required eVaf libraries +set(eVaf_LIBRARIES) + +# Source files +set(SRCS + main.cpp + exithandler.cpp + fatalerr.cpp + version.cpp +) +if(WIN32) + set(SRCS + ${SRCS} + winconsole.cpp + ) +) + +# Header files for the meta-object compiler +set(MOC_HDRS + main.h + fatalerr.h + version_p.h +) + +# Resources +set(RCCS + gui.qrc +) + +# Version info resource file for Windows builds +if(WIN32) + set(SRCS ${SRCS} version.rc gui.rc) +endif(WIN32) + +qt4_add_resources(RCC_SRCS ${RCCS}) + +qt4_wrap_cpp(MOC_SRCS ${MOC_HDRS}) + +add_executable(${TARGET} WIN32 ${SRCS} ${MOC_SRCS} ${RCC_SRCS}) + +target_link_libraries(${TARGET} ${QT_LIBRARIES} ${eVaf_LIBRARIES}) + +install(TARGETS ${TARGET} DESTINATION bin)