1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:17:44 +00:00

Meta/gn: Move enable_qt arg into dedicated gni file

No behavior change.
This commit is contained in:
Nico Weber 2024-01-02 09:44:32 -05:00 committed by Tim Flynn
parent 82e85172e5
commit 9621e77a31
2 changed files with 5 additions and 5 deletions

View file

@ -1,12 +1,8 @@
import("//Ladybird/compile_qt_resource_file.gni")
import("//Ladybird/enable_qt.gni")
import("//Ladybird/link_qt.gni")
import("//Ladybird/moc_qt_objects.gni")
declare_args() {
# Build the Ladybird application using the Qt chrome.
enable_qt = current_os != "mac"
}
group("Ladybird") {
if (current_os == "mac") {
deps = [ ":Ladybird.app" ]

View file

@ -0,0 +1,4 @@
declare_args() {
# Build the Ladybird application using the Qt chrome.
enable_qt = current_os != "mac"
}