mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:17:35 +00:00
Meta: Add gn build rules for Ladybird
This commit is contained in:
parent
85c8cd5205
commit
16b83cd8fb
11 changed files with 381 additions and 0 deletions
33
Meta/gn/secondary/Ladybird/SQLServer/BUILD.gn
Normal file
33
Meta/gn/secondary/Ladybird/SQLServer/BUILD.gn
Normal file
|
@ -0,0 +1,33 @@
|
|||
import("//Ladybird/link_qt.gni")
|
||||
|
||||
link_qt("SQLServer_qt") {
|
||||
qt_components = [
|
||||
"Core",
|
||||
"Gui",
|
||||
"Network",
|
||||
]
|
||||
}
|
||||
|
||||
executable("SQLServer") {
|
||||
configs += [
|
||||
"//Ladybird:ladybird_config",
|
||||
":SQLServer_qt",
|
||||
]
|
||||
include_dirs = [
|
||||
"//Userland/Libraries",
|
||||
"//Userland/Services",
|
||||
]
|
||||
deps = [
|
||||
"//AK",
|
||||
"//Userland/Libraries/LibCore",
|
||||
"//Userland/Libraries/LibIPC",
|
||||
"//Userland/Libraries/LibMain",
|
||||
"//Userland/Libraries/LibSQL",
|
||||
]
|
||||
sources = [
|
||||
"//Userland/Services/SQLServer/ConnectionFromClient.cpp",
|
||||
"//Userland/Services/SQLServer/DatabaseConnection.cpp",
|
||||
"//Userland/Services/SQLServer/SQLStatement.cpp",
|
||||
"main.cpp",
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue