--!A cross-platform build utility based on Lua -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- Copyright (C) 2015-present, Xmake Open Source Community. -- -- @author ruki -- @file xmake.lua -- -- define rule: qt/wasm application rule("qt._wasm_app") add_deps("qt.env") after_build("build_qt_wasm_app") -- define rule: qt static library rule("qt.static") add_deps("qt.qrc", "qt.ui", "qt.moc", "qt.ts") -- we must set kind before target.on_load(), may we will use target in on_load() on_load(function (target) target:set("kind", "static") end) on_config(function (target) import("load")(target, {frameworks = {"QtCore"}}) end) -- define rule: qt shared library rule("qt.shared") add_deps("qt.qrc", "qt.ui", "qt.moc", "qt.ts") -- we must set kind before target.on_load(), may we will use target in on_load() on_load(function (target) target:set("kind", "shared") end) on_config(function (target) import("load")(target, {frameworks = {"QtCore"}}) end) after_install("windows", "install.windows") after_install("mingw", "install.mingw") -- define rule: qt console rule("qt.console") add_deps("qt.qrc", "qt.ui", "qt.moc", "qt.ts") -- we must set kind before target.on_load(), may we will use target in on_load() on_load(function (target) target:set("kind", "binary") end) on_config(function (target) import("load")(target, {frameworks = {"QtCore"}}) end) after_install("windows", "install.windows") after_install("mingw", "install.mingw") -- define rule: qt widgetapp rule("qt.widgetapp") add_deps("qt.ui", "qt.moc", "qt._wasm_app", "qt.qrc", "qt.ts") -- we must set kind before target.on_load(), may we will use target in on_load() on_load(function (target) target:set("kind", target:is_plat("android") and "shared" or "binary") end) on_config(function (target) -- get qt sdk version local qt = target:data("qt") local qt_sdkver = nil if qt.sdkver then import("core.base.semver") qt_sdkver = semver.new(qt.sdkver) end local frameworks = {"QtGui", "QtWidgets", "QtCore"} if qt_sdkver and qt_sdkver:lt("5.0") then frameworks = {"QtGui", "QtCore"} -- qt4.x has not QtWidgets, it is in QtGui end import("load")(target, {gui = true, frameworks = frameworks}) end) -- deploy application after_build("android", "deploy.android") after_build("macosx", "deploy.macosx") -- install application for android on_install("android", "install.android") after_install("windows", "install.windows") after_install("mingw", "install.mingw") -- install application for xpack on_installcmd("installcmd") on_uninstallcmd("uninstallcmd") -- define rule: qt static widgetapp rule("qt.widgetapp_static") add_deps("qt.ui", "qt.moc", "qt._wasm_app", "qt.qrc", "qt.ts") -- we must set kind before target.on_load(), may we will use target in on_load() on_load(function (target) target:set("kind", target:is_plat("android") and "shared" or "binary") end) on_config(function (target) local frameworks, plugins, qt_sdkver = import("config_static")(target) if qt_sdkver:ge("5.0") then table.join2(frameworks, {"QtGui", "QtWidgets", "QtCore"}) else table.join2(frameworks, {"QtGui", "QtCore"})-- qt4.x has not QtWidgets, it is in QtGui end import("load")(target, {gui = true, plugins = plugins, frameworks = frameworks}) end) -- deploy application after_build("android", "deploy.android") after_build("macosx", "deploy.macosx") -- install application for android on_install("android", "install.android") after_install("windows", "install.windows") after_install("mingw", "install.mingw") -- install application for xpack on_installcmd("installcmd") on_uninstallcmd("uninstallcmd") -- define rule: qt quickapp rule("qt.quickapp") add_deps("qt.qrc", "qt.moc", "qt._wasm_app", "qt.ts") -- we must set kind before target.on_load(), may we will use target in on_load() on_load(function (target) target:set("kind", target:is_plat("android") and "shared" or "binary") end) on_config(function (target) import("load")(target, {gui = true, frameworks = {"QtGui", "QtQuick", "QtQml", "QtCore", "QtNetwork"}}) end) -- deploy application after_build("android", "deploy.android") after_build("macosx", "deploy.macosx") -- install application for android on_install("android", "install.android") after_install("windows", "install.windows") after_install("mingw", "install.mingw") -- install application for xpack on_installcmd("installcmd") on_uninstallcmd("uninstallcmd") -- define rule: qt static quickapp rule("qt.quickapp_static") add_deps("qt.qrc", "qt.moc", "qt._wasm_app", "qt.ts") -- we must set kind before target.on_load(), may we will use target in on_load() on_load(function (target) target:set("kind", target:is_plat("android") and "shared" or "binary") end) on_config(function (target) local frameworks, plugins = import("config_static")(target) table.join2(frameworks, {"QtGui", "QtQuick", "QtQml", "QtQmlModels", "QtCore", "QtNetwork"}) import("load")(target, {gui = true, plugins = plugins, frameworks = frameworks}) end) -- deploy application after_build("android", "deploy.android") after_build("macosx", "deploy.macosx") -- install application for android on_install("android", "install.android") after_install("windows", "install.windows") after_install("mingw", "install.mingw") -- install application for xpack on_installcmd("installcmd") on_uninstallcmd("uninstallcmd") -- define rule: qt qmlplugin rule("qt.qmlplugin") add_deps("qt.shared", "qt.qmltyperegistrar", "qt.ts") on_config(function(target) import("load")(target, {frameworks = { "QtCore", "QtGui", "QtQuick", "QtQml", "QtNetwork" }}) end) -- define rule: qt application (deprecated) rule("qt.application") add_deps("qt.quickapp", "qt.ui")