forked from swiftlang/swift-build
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmacOSNativeBuildSystem.xcspec
More file actions
42 lines (40 loc) · 1.72 KB
/
Copy pathmacOSNativeBuildSystem.xcspec
File metadata and controls
42 lines (40 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2025 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
(
{
_Domain = macosx;
Type = BuildSystem;
Identifier = com.apple.build-system.native;
BasedOn = "default:com.apple.build-system.native";
Name = "Native Build System";
Properties = (
{ Name = COMBINE_HIDPI_IMAGES;
Type = bool;
DefaultValue = NO;
Category = "Deployment";
Description = "Combines image files at different resolutions into one multi-page TIFF file that is HiDPI compliant for macOS 10.7 and later. Only image files in the same directory and with the same base name and extension are combined. The file names must conform to the naming convention used in HiDPI.";
},
{ Name = PRODUCT_DEFINITION_PLIST;
Type = String;
DefaultValue = "";
Category = "Deployment";
Description = "Path to a file specifying additional requirements for a product archive.";
},
{ Name = "REGISTER_APP_GROUPS";
Type = Boolean;
DefaultValue = NO;
Category = "Code Signing";
Description = "Register app groups in profiles.";
},
);
}
)