Skip to content

Commit

Permalink
Update quickstart.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
kimkulling committed Apr 25, 2021
1 parent e7f52a4 commit 6ec41d4
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions source/about/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,19 @@ Windows DLL Build

The Assimp-package can be built as DLL. You just need to run the default cmake run.

.. _ai_static_lib:

Assimp static lib
-----------------

The Assimp-package can be build as a static library as well. Do do so just set the configuration variable **BUILD_SHARED_LIBS**
to off during the cmake run. For example:

::

cmake CMakeLists.txt -G "Ninja" -BUILD_SHARED_LIBS=ON

will generate a static library buid by Ninja.

.. _ai_andorid_build:

Expand Down Expand Up @@ -135,11 +148,3 @@ A small example how to wrap assimp for Android:
}

The Assimp-package can be built as DLL. You just need to run the default cmake run.

.. _ai_static_lib:

Assimp static lib
-----------------

The Assimp-package can be build as a static library as well. Do do so just set the configuration variable **BUILD_SHARED_LIBS**
to off during the cmake run.

0 comments on commit 6ec41d4

Please sign in to comment.