Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
42e2964c5f8aead6fdd55fa8fdeb35698c04cf06
/
.
/
Tests
/
RunCMake
/
XcodeProject-Device
/
dummy_main.swift
blob: 1aaee42c88c8b0c7488fc00b212bd7498eda1e2d [
file
]
#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