zint-barcode-generator/frontend_qt/CMakeLists.txt

27 lines
1.3 KiB
CMake
Raw Normal View History

2008-09-18 10:44:52 -04:00
# (c) 2008 by BogDan Vatra < bogdan@licentia.eu >
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)
2016-12-11 10:29:06 -05:00
QT5_WRAP_CPP(zint-qt_SRCS mainwindow.h datawindow.h sequencewindow.h exportwindow.h)
2009-05-21 17:00:23 -04:00
2016-12-11 10:29:06 -05:00
QT5_WRAP_UI(zint-qt_SRCS mainWindow.ui extData.ui extSequence.ui extExport.ui)
# 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
2016-12-11 10:29:06 -05:00
QT5_ADD_RESOURCES(zint-qt_SRCS resources.qrc)
2008-09-18 10:44:52 -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
2016-12-11 10:29:06 -05:00
target_link_libraries(zint-qt zint QZint Qt5::UiTools ${QT_QTXML_LIBRARY} Qt5::Gui Qt5::Core )
2009-07-17 18:13:39 -04:00
install(TARGETS zint-qt DESTINATION "${BIN_INSTALL_DIR}" RUNTIME)