Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/melmass/swiftoiio
https://github.com/melmass/swiftoiio
macos opencolorio swift
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/melmass/swiftoiio
- Owner: melMass
- Created: 2021-08-05T10:09:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-05T11:25:44.000Z (over 3 years ago)
- Last Synced: 2024-10-28T14:25:19.631Z (2 months ago)
- Topics: macos, opencolorio, swift
- Language: C++
- Homepage:
- Size: 74.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SwiftOIIO
## Requirements
- XCode 11+
- macOS 10.15+
- [conan](https://docs.conan.io/en/latest/installation.html)## Status
For now this is just a crude wrapper around Video Village's Objc Library, [OIIOCocoa](https://github.com/videovillage/oiiococoa)## Install
To manage the large amount of deps, while still building from source I use Conan.
Just install it and run the following.
This will generate a `conanbuildinfo.xcconfig` file (a list of header/libs path), just load it in XCode and set it as your Release and Debug configuration in `build settings````bash
# clone the repo
git clone "https://github.com/melMass/SwiftOIIO"
cd "SwiftOIIO"# install and build deps
conan install .
```