1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
project(uart)
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Gui SerialPort Widgets)
set(module_name "uart")
set(TS_FILES
UART_de_DE.ts
UART_es_ES.ts
UART_fi_FI.ts
UART_fr_FR.ts
UART_it_IT.ts
UART_nl_NL.ts
UART_cz_CZ.ts
UART_pt_BR.ts
UART_ca_ES.ts
UART_ja_JP.ts
)
if(QT_VERSION_MAJOR GREATER 5)
qt_add_translation(QM_FILES ${TS_FILES})
else()
qt5_add_translation(QM_FILES ${TS_FILES})
endif()
add_library(${module_name} SHARED
${QM_FILES}
)
target_sources(${module_name} PRIVATE
../interfaces/qlcioplugin.cpp ../interfaces/qlcioplugin.h
uartplugin.cpp uartplugin.h
uartwidget.cpp uartwidget.h
)
target_include_directories(${module_name} PRIVATE
../interfaces
)
target_link_libraries(${module_name} PRIVATE
Qt${QT_MAJOR_VERSION}::Core
Qt${QT_MAJOR_VERSION}::Gui
Qt${QT_MAJOR_VERSION}::SerialPort
Qt${QT_MAJOR_VERSION}::Widgets
)
install(TARGETS ${module_name}
LIBRARY DESTINATION ${INSTALLROOT}/${PLUGINDIR}
RUNTIME DESTINATION ${INSTALLROOT}/${PLUGINDIR}
)
|