https://github.com/coeur/objcswiftninja
https://github.com/coeur/objcswiftninja
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/coeur/objcswiftninja
- Owner: Coeur
- Created: 2023-02-19T21:52:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-19T21:53:57.000Z (over 3 years ago)
- Last Synced: 2025-12-31T11:42:27.581Z (5 months ago)
- Language: CMake
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Building from the command line
With Xcode (succeeds):
```console
cmake -B build -G Xcode
xcodebuild -project build/ObjcSwiftNinja.xcodeproj -target ObjcSwiftNinja-app
```
With Ninja (fails):
```console
cmake -B build -G Ninja
ninja -C build ObjcSwiftNinja-app
```