Skip to content

Commit cc1d18b

Browse files
committed
Moved ios project
1 parent 7156619 commit cc1d18b

38 files changed

+203
-147
lines changed

Enu.xcframework/Info.plist

-40
This file was deleted.

Enu/dylibs/_dlls/enu.ios.framework/Info.plist

-24
This file was deleted.

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Scott Wadden
3+
Copyright (c) 2025 Scott Wadden
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

enu.nimble

+3
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ proc build_godot(target = target, cpu = cpu, opts = godot_opts) =
7474
with_dir "vendor/godot":
7575
exec &"{scons} custom_modules=../modules platform={target} arch={cpu} {opts} -j{cores}"
7676

77+
task build_ios_godot, "Build godot for ios":
78+
build_godot(target = "iphone", cpu = "arm64")
79+
7780
task build_godot, "Build godot":
7881
build_godot()
7982

ios/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.a
2+
Enu.pck
3+
**/xcuserdata

ios/DistributionSummary.plist

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>Enu.ipa</key>
6+
<array>
7+
<dict>
8+
<key>architectures</key>
9+
<array>
10+
<string>arm64</string>
11+
</array>
12+
<key>buildNumber</key>
13+
<string>1.0</string>
14+
<key>certificate</key>
15+
<dict>
16+
<key>SHA1</key>
17+
<string>7FC4F170D84F4376DEA47F13F19BF87FB49A33F4</string>
18+
<key>dateExpires</key>
19+
<string>2025-06-15</string>
20+
<key>type</key>
21+
<string>Apple Development</string>
22+
</dict>
23+
<key>entitlements</key>
24+
<dict>
25+
<key>application-identifier</key>
26+
<string>78XKJ5H5BX.com.getenu.enu</string>
27+
<key>com.apple.developer.team-identifier</key>
28+
<string>78XKJ5H5BX</string>
29+
<key>get-task-allow</key>
30+
<true/>
31+
</dict>
32+
<key>name</key>
33+
<string>Enu.app</string>
34+
<key>profile</key>
35+
<dict>
36+
<key>UUID</key>
37+
<string>6b654f55-fa17-4cf1-9bda-239ec4627a21</string>
38+
<key>dateExpires</key>
39+
<string>2025-06-18</string>
40+
<key>name</key>
41+
<string>iOS Team Provisioning Profile: com.getenu.enu</string>
42+
</dict>
43+
<key>team</key>
44+
<dict>
45+
<key>id</key>
46+
<string>78XKJ5H5BX</string>
47+
<key>name</key>
48+
<string></string>
49+
</dict>
50+
<key>versionNumber</key>
51+
<string>1.0</string>
52+
</dict>
53+
</array>
54+
</dict>
55+
</plist>

0 commit comments

Comments
 (0)