File tree Expand file tree Collapse file tree 3 files changed +18
-3
lines changed
Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 1515 - name : Windows
1616 os : windows-latest
1717
18+ - name : macOS
19+ os : macos-latest
20+
1821 - name : Android32
1922 os : ubuntu-latest
2023 target : Android32
2326 os : ubuntu-latest
2427 target : Android64
2528
29+ - name : iOS
30+ os : macos-latest
31+ target : iOS
32+
2633 name : ${{ matrix.config.name }}
2734 runs-on : ${{ matrix.config.os }}
2835
3239 - name : Build the mod
3340 uses : geode-sdk/build-geode-mod@main
3441 with :
42+ cli : ' nightly'
43+ sdk : ' nightly'
3544 bindings-ref : main
3645 combine : true
3746 target : ${{ matrix.config.target }}
Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.21 )
22set (CMAKE_CXX_STANDARD 20)
33set (CMAKE_CXX_STANDARD_REQUIRED ON )
4- set (CMAKE_OSX_ARCHITECTURES "x86_64" )
4+ if ("${CMAKE_SYSTEM_NAME} " STREQUAL "iOS" OR IOS )
5+ set (CMAKE_OSX_ARCHITECTURES "arm64" )
6+ else ()
7+ set (CMAKE_OSX_ARCHITECTURES "arm64;x86_64" )
8+ endif ()
59set (CMAKE_CXX_VISIBILITY_PRESET hidden)
610
711project (EditorSounds VERSION 1.0.0)
Original file line number Diff line number Diff line change 22 "geode" : " 4.2.0" ,
33 "gd" : {
44 "win" : " 2.2074" ,
5- "android" : " 2.2074"
5+ "android" : " 2.2074" ,
6+ "mac" : " 2.2074" ,
7+ "ios" : " 2.2074"
68 },
7- "version" : " v1.1.9 " ,
9+ "version" : " v1.1.10 " ,
810 "id" : " alphalaneous.editorsounds" ,
911 "name" : " Editor Sounds" ,
1012 "developer" : " Alphalaneous" ,
You can’t perform that action at this time.
0 commit comments