mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
This is just a direct port of the Objective-C++ code to Swift 6. A future patch should probably update it to actually use SwiftUI.
15 lines
298 B
Plaintext
15 lines
298 B
Plaintext
module Ladybird [system] {
|
|
requires cplusplus
|
|
requires objc_arc
|
|
|
|
explicit module WebView {
|
|
header "UI/LadybirdWebView.h"
|
|
export *
|
|
}
|
|
|
|
explicit module WebViewApplication {
|
|
header "../../Userland/Libraries/LibWebView/Application.h"
|
|
export *
|
|
}
|
|
}
|