File: README.txt

package info (click to toggle)
gem 1%3A0.94-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 25,320 kB
  • sloc: cpp: 174,266; ansic: 42,129; makefile: 3,848; sh: 1,096; objc: 389
file content (32 lines) | stat: -rw-r--r-- 1,010 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
read a model using ASSIMPv2 (http://assimp.sf.net)
--------------------------------------------------




TODO
====
  animation:
 	-> http://nolimitsdesigns.com/game-design/open-asset-import-library-animation-loader/
  extract texture files


compilation hints
=================

w32-mingw
---------

on w32/MinGW, configure will most likely not find your installation of the assimp-sdk.
this is what i use approximately to enable assimp support when building Gem with MinGW
(the code is bash-script, change appropriately if you use another shell; the leading '$'
is to indicate newlines - don't copy them)
also make sure that ASSIMP_PATH does not contain any spaces!

$ ASSIMP_PATH=/home/zmoelnig/src/assimp--2.0.863-sdk
$ ASSIMP_CFLAGS=-I${ASSIMP_PATH}/include
$ ASSIMP_LIBS=-L${ASSIMP_PATH}/bin/assimp_release-dll_win32 -Xlinker -l:Assimp32.dll
$ ./configure PKG_ASSIMP_CFLAGS="${ASSIMP_CFLAGS}" PKG_ASSIMP_LIBS="${ASSIMP_LIBS}"


it's a good idea to put the "Assimp32.dll" besides your gem_modelASSIMP.dll