2021-06-24 20:31:08 +03:00
# Copyright (C) 2008 by BogDan Vatra < bogdan@licentia.eu >
# Copyright (C) 2009-2021 Robin Stuart <rstuart114@gmail.com>
2020-10-26 15:21:43 +03:00
# vim: set ts=4 sw=4 et :
2008-09-18 18:44:52 +04:00
2009-07-18 02:13:39 +04:00
project ( zint-qt )
2008-09-18 18:44:52 +04:00
2021-07-06 18:35:04 +03:00
set ( CMAKE_AUTORCC ON )
2008-09-18 18:44:52 +04:00
2021-07-06 18:35:04 +03:00
set ( ${ PROJECT_NAME } _SRCS barcodeitem.cpp main.cpp mainwindow.cpp datawindow.cpp sequencewindow.cpp exportwindow.cpp )
2009-05-22 01:00:23 +04:00
2020-10-26 15:21:43 +03:00
if ( USE_QT6 )
2021-06-24 20:31:08 +03:00
qt6_wrap_cpp ( zint-qt_SRCS mainwindow.h datawindow.h sequencewindow.h exportwindow.h )
2020-10-26 15:21:43 +03:00
qt6_wrap_ui ( zint-qt_SRCS mainWindow.ui extData.ui extSequence.ui extExport.ui )
else ( )
2021-06-24 20:31:08 +03:00
qt5_wrap_cpp ( zint-qt_SRCS mainwindow.h datawindow.h sequencewindow.h exportwindow.h )
2020-10-26 15:21:43 +03:00
qt5_wrap_ui ( zint-qt_SRCS mainWindow.ui extData.ui extSequence.ui extExport.ui )
endif ( )
2021-07-06 18:35:04 +03:00
2021-09-13 20:49:25 +03:00
# grpAztec.ui grpC39.ui grpCodablockF.ui grpDotCode.ui grpMicroPDF.ui grpRMQR.ui
# grpC11.ui grpC49.ui grpCodeOne.ui grpGrid.ui grpMQR.ui grpUltra.ui
# grpC128.ui grpC93.ui grpDAFT.ui grpHX.ui grpMSICheck.ui grpUPCA.ui
# grpC16k.ui grpChannel.ui grpDBExtend.ui grpLOGMARS.ui grpPDF417.ui grpUPCEAN.ui
# grpC25.ui grpCodabar.ui grpDM.ui grpMaxicode.ui grpQR.ui grpVIN.ui
2009-05-22 01:00:23 +04:00
2021-07-06 18:35:04 +03:00
add_executable ( ${ PROJECT_NAME } ${ zint-qt_SRCS } resources.qrc )
2008-09-18 18:44:52 +04:00
2021-08-12 16:54:21 +03:00
if ( WIN32 )
target_sources ( ${ PROJECT_NAME } PRIVATE res/qtZint.rc )
endif ( )
2021-07-06 18:35:04 +03:00
target_include_directories ( ${ PROJECT_NAME } PUBLIC "${CMAKE_SOURCE_DIR}/backend" "${CMAKE_SOURCE_DIR}/backend_qt" )
target_link_libraries ( ${ PROJECT_NAME } zint QZint Qt ${ QT_VERSION_MAJOR } ::UiTools Qt ${ QT_VERSION_MAJOR } ::Xml Qt ${ QT_VERSION_MAJOR } ::Gui Qt ${ QT_VERSION_MAJOR } ::Core )
2008-09-18 18:44:52 +04:00
2009-05-20 12:33:01 +04:00
2021-07-06 18:35:04 +03:00
install ( TARGETS ${ PROJECT_NAME } DESTINATION "${BIN_INSTALL_DIR}" RUNTIME )