CMake/Tests/RunCMake/XcodeProject-Device/dummy_main.swift
Brad King a4d114e8cd Tests: Split some RunCMake.XcodeProject cases into a separate test
The `RunCMake.XcodeProject` has many cases and occasionally fails
due to timeout.  Move iOS and other device-specific cases to a new
`RunCMake.XcodeProject-Device` test.
2023-05-15 10:18:54 -04:00

19 lines
232 B
Swift

#if os(iOS)
import UIKit
@UIApplicationMain
class MyApp: UIResponder, UIApplicationDelegate {
}
#elseif os(macOS)
import SwiftUI
@main
struct MyApp: App {
var body: some Scene {
WindowGroup {
}
}
}
#endif