zint-barcode-generator/frontend_qt/CMakeLists.txt

37 lines
1.7 KiB
CMake
Raw Permalink Normal View History

2008-09-18 10:44:52 -04:00
# (c) 2008 by BogDan Vatra < bogdan@licentia.eu >
# vim: set ts=4 sw=4 et :
2008-09-18 10:44:52 -04:00
2009-07-17 18:13:39 -04:00
project(zint-qt)
2008-09-18 10:44:52 -04:00
2016-12-11 10:29:06 -05:00
include_directories(BEFORE "${CMAKE_SOURCE_DIR}/backend" "${CMAKE_SOURCE_DIR}/backend_qt")
2008-09-18 10:44:52 -04:00
set(zint-qt_SRCS barcodeitem.cpp main.cpp mainwindow.cpp datawindow.cpp sequencewindow.cpp exportwindow.cpp)
2009-05-21 17:00:23 -04:00
if(USE_QT6)
qt6_wrap_cpp(zint-qt_SRCS mainwindow.h datawindow.h sequencewindow.h exportwindow.h)
qt6_wrap_ui(zint-qt_SRCS mainWindow.ui extData.ui extSequence.ui extExport.ui)
qt6_add_resources(zint-qt_SRCS resources.qrc)
else()
qt5_wrap_cpp(zint-qt_SRCS mainwindow.h datawindow.h sequencewindow.h exportwindow.h)
qt5_wrap_ui(zint-qt_SRCS mainWindow.ui extData.ui extSequence.ui extExport.ui)
qt5_add_resources(zint-qt_SRCS resources.qrc)
endif()
# grpAztec.ui grpC49.ui grpDBExtend.ui grpLOGMARS.ui grpPDF417.ui grpUPCEAN.ui
# grpC11.ui grpChannel.ui grpDM.ui grpMaxicode.ui grpQR.ui grpVIN.ui
# grpC128.ui grpCodabar.ui grpDotCode.ui grpMicroPDF.ui grpRMQR.ui
# grpC16k.ui grpCodablockF.ui grpGrid.ui grpMQR.ui grpUltra.ui
# grpC39.ui grpCodeOne.ui grpHX.ui grpMSICheck.ui grpUPCA.ui
2009-05-21 17:00:23 -04:00
2009-07-17 18:13:39 -04:00
add_executable(zint-qt ${zint-qt_SRCS})
add_dependencies(zint-qt QZint zint)
2008-09-18 10:44:52 -04:00
2016-12-11 10:29:06 -05:00
link_directories( "${CMAKE_BINARY_DIR}/backend" "${CMAKE_BINARY_DIR}/backend_qt" )
2008-09-18 10:44:52 -04:00
if(USE_QT6)
target_link_libraries(zint-qt zint QZint Qt6::UiTools ${QT_QTXML_LIBRARY} Qt6::Gui Qt6::Core)
else()
target_link_libraries(zint-qt zint QZint Qt5::UiTools ${QT_QTXML_LIBRARY} Qt5::Gui Qt5::Core)
endif()
2009-07-17 18:13:39 -04:00
install(TARGETS zint-qt DESTINATION "${BIN_INSTALL_DIR}" RUNTIME)