blob: 4dd391ae0b07a2a70b868c84f472c265d3425f23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
set_version("1.0.0")
add_rules("mode.debug", "mode.release")
includes("@builtin/xpack")
target("macapp")
add_rules("xcode.application")
add_files("src/*.m", "src/**.storyboard", "src/*.xcassets")
add_files("src/Info.plist")
xpack("macapp")
set_formats("dmg")
set_title("MacApp Test")
set_author("ruki <[email protected]>")
set_description("A test macOS application installer.")
set_homepage("https://xmake.io")
set_license("Apache-2.0")
add_targets("macapp")
|