You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix issue #11 - Cannot find TextureTypeToString in scope AiTextureType.swift
* Remove custom pkg-config files for mac - libassimp.5.2.4 has working support
* Fix tests
* Update mint dependencies
* Update CI
* Update headers
* Add Swift Package Index shields
* Update macOS runner platform
* Update Linux CI to account for missing make
* Remove texture to string
* Make tests Linux compatible again
* Update README
* Fix linux CI cache
Swift package manager relies on the [pkg-config](http://pkg-config.freedesktop.org) tool to find system installed libraries.
71
-
Assimp version 5 contains a regression, which provides a broken pkg-config file (assimp.pc).
72
-
Therefore SPM is not able to find the include headers out of the box resulting in the error:
73
-
`shims.h:1:10: error: 'assimp/cimport.h' file not found`.
74
-
This is a known bug and is tracked here <https://github.com/assimp/assimp/issues/3174> and here <https://github.com/assimp/assimp/issues/2804>.
75
-
However there is a fix that requires one manual step.
76
-
77
-
Depending on your assimp version run the following command in your Terminal:
78
-
79
-
- print the currently installed assimp version: `printBrewAssimpVersion`
80
-
- for version 5.0.0: `make copyMacPkgConfig500`
81
-
- for version 5.0.1: `make copyMacPkgConfig501`
82
-
83
-
This will copy a corrected pkg-config file to the appropriate library location. You will need to repeat this step when updating assimp via homebrew until a fix is provided by the assimp developers.
0 commit comments