Skip to content

Commit

Permalink
Merge pull request #132 from adriengivry/fix/readme-apple-targets
Browse files Browse the repository at this point in the history
Fixed Runtime.xcodeproj path for apple targets
  • Loading branch information
jmorton06 committed Dec 31, 2023
2 parents 80f1e57 + 2d97104 commit b5a0f9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,21 +53,21 @@ msbuild /p:Platform=x64 /p:Configuration=Release Lumos.sln
```
cd Lumos
Tools/premake5 xcode4
xcodebuild -project Runtime.xcodeproj
xcodebuild -project Runtime/Runtime.xcodeproj
```

M1/M2/M3 Macs may need :
```
cd Lumos
Tools/premake5 xcode4 --arch=arm64 --os=macosx
xcodebuild -project Runtime.xcodeproj
xcodebuild -project Runtime/Runtime.xcodeproj
```

#### iOS
```
cd Lumos
Tools/premake5 xcode4 --os=ios
xcodebuild -project Runtime.xcodeproj CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
xcodebuild -project Runtime/Runtime.xcodeproj CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
```

To run on apple devices with Vulkan ( MoltenVK ), disable Metal API Validation here : Product > Scheme > Edit Scheme… > Run > Options > Metal API Validation
Expand Down

0 comments on commit b5a0f9f

Please sign in to comment.