blob: 09ddc36f7be488788e6f680e152d341dbf9be6fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
add_rules("mode.debug", "mode.release")
includes("qt_add_static_plugins.lua")
target("qt_demo")
add_rules("qt.widgetapp_static")
add_headerfiles("src/*.h")
add_files("src/*.cpp")
add_files("src/mainwindow.ui")
add_files("src/mainwindow.h")
qt_add_static_plugins("QSvgPlugin", {linkdirs = "plugins/imageformats", links = {"qsvg", "Qt5Svg"}})
|