https://github.com/mgadda/cassimp
Swift system module for assimp library (https://github.com/assimp/assimp)
https://github.com/mgadda/cassimp
assimp swift swift-package-manager
Last synced: 8 months ago
JSON representation
Swift system module for assimp library (https://github.com/assimp/assimp)
- Host: GitHub
- URL: https://github.com/mgadda/cassimp
- Owner: mgadda
- License: mit
- Created: 2017-03-01T20:50:56.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-20T14:53:36.000Z (about 9 years ago)
- Last Synced: 2025-08-22T07:48:16.940Z (10 months ago)
- Topics: assimp, swift, swift-package-manager
- Language: Swift
- Size: 3.91 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
CAssimp is a Swift System Module for the assimp library which makes
it trivially easy to use assimp in your swift projects.
In your project's `Package.swift`, add the following dependency:
```swift
import PackageDescription
let package = Package(
name: "yourproject",
dependencies: [
.Package(url: "https://github.com/mgadda/CAssimp", majorVersion: 0, minor: 1)
]
)
```
This system module definition expects that you'll install assimp using
homebrew:
```bash
brew install assimp
```
If you're not using homebrew, you should note that this definition
expects assimp to be installed in /usr/local (which is where homebrew
typically installed libraries).