commit
b64f1c40f4
22
Build.md
22
Build.md
|
@ -1,6 +1,6 @@
|
||||||
# Build Instructions
|
# Build / Install Instructions
|
||||||
|
|
||||||
## Build on all platforms using vcpkg
|
## Install on all platforms using vcpkg
|
||||||
You can download and install assimp using the [vcpkg](https://github.com/Microsoft/vcpkg/) dependency manager:
|
You can download and install assimp using the [vcpkg](https://github.com/Microsoft/vcpkg/) dependency manager:
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/Microsoft/vcpkg.git
|
git clone https://github.com/Microsoft/vcpkg.git
|
||||||
|
@ -11,6 +11,18 @@ You can download and install assimp using the [vcpkg](https://github.com/Microso
|
||||||
```
|
```
|
||||||
The assimp port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.
|
The assimp port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.
|
||||||
|
|
||||||
|
## Install on Ubuntu
|
||||||
|
You can install the Asset-Importer-Lib via apt:
|
||||||
|
```
|
||||||
|
sudo apt-get install assimp
|
||||||
|
```
|
||||||
|
|
||||||
|
## Install pyassimp
|
||||||
|
You need to have pip installed:
|
||||||
|
```
|
||||||
|
pip install pyassimp
|
||||||
|
```
|
||||||
|
|
||||||
## Manual build instructions
|
## Manual build instructions
|
||||||
|
|
||||||
### Install CMake
|
### Install CMake
|
||||||
|
@ -24,6 +36,12 @@ Make sure you have a working git-installation. Open a command prompt and clone t
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/assimp/assimp.git
|
git clone https://github.com/assimp/assimp.git
|
||||||
```
|
```
|
||||||
|
### Build from source:
|
||||||
|
```bash
|
||||||
|
cd assimp
|
||||||
|
cmake CMakeLists.txt
|
||||||
|
cmake --build .
|
||||||
|
```
|
||||||
|
|
||||||
### Build instructions for Windows with Visual-Studio
|
### Build instructions for Windows with Visual-Studio
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue