2008-09-18 18:44:52 +04:00
# (c) 2008 by BogDan Vatra < bogdan@licentia.eu >
2009-07-18 02:13:39 +04:00
project ( zint-qt )
2008-09-18 18:44:52 +04:00
2016-12-11 18:29:06 +03:00
include_directories ( BEFORE "${CMAKE_SOURCE_DIR}/backend" "${CMAKE_SOURCE_DIR}/backend_qt" )
2008-09-18 18:44:52 +04:00
2009-09-19 12:13:35 +04:00
set ( zint-qt_SRCS barcodeitem.cpp main.cpp mainwindow.cpp datawindow.cpp sequencewindow.cpp exportwindow.cpp )
2016-12-11 18:29:06 +03:00
QT5_WRAP_CPP ( zint-qt_SRCS mainwindow.h datawindow.h sequencewindow.h exportwindow.h )
2009-05-22 01:00:23 +04:00
2016-12-11 18:29:06 +03:00
QT5_WRAP_UI ( zint-qt_SRCS mainWindow.ui extData.ui extSequence.ui extExport.ui )
2009-05-22 01:00:23 +04:00
# grpAztec.ui grpC39.ui grpDM.ui grpMSICheck.ui
# grpC128.ui grpChannel.ui grpMicroPDF.ui grpPDF417.ui
2009-05-27 03:07:16 +04:00
# grpC16k.ui grpCodablock.ui grpMQR.ui grpQR.ui
# grpMaxicode.ui)
2009-05-22 01:00:23 +04:00
2016-12-11 18:29:06 +03:00
QT5_ADD_RESOURCES ( zint-qt_SRCS resources.qrc )
2008-09-18 18:44:52 +04:00
2009-07-18 02:13:39 +04:00
add_executable ( zint-qt ${ zint-qt_SRCS } )
add_dependencies ( zint-qt QZint zint )
2008-09-18 18:44:52 +04:00
2016-12-11 18:29:06 +03:00
link_directories ( "${CMAKE_BINARY_DIR}/backend" "${CMAKE_BINARY_DIR}/backend_qt" )
2008-09-18 18:44:52 +04:00
2016-12-11 18:29:06 +03:00
target_link_libraries ( zint-qt zint QZint Qt5::UiTools ${ QT_QTXML_LIBRARY } Qt5::Gui Qt5::Core )
2009-05-20 12:33:01 +04:00
2009-07-18 02:13:39 +04:00
install ( TARGETS zint-qt DESTINATION "${BIN_INSTALL_DIR}" RUNTIME )