mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-03 04:10:05 -06:00
The fix from commit eafe740ead (FindXCTest: Fix output directory for
test bundle with new build system, 2021-02-09, v3.19.5~5^2) is not
necessary with Xcode 12.5, which seems to have changed/fixed the
behaviour again.
Fixes: #22462
19 lines
232 B
Swift
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
|