~ubuntu-branches/debian/experimental/openscenegraph/experimental

« back to all changes in this revision

Viewing changes to OpenSceneGraph/src/osgPlugins/fbx/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Alberto Luaces
  • Date: 2011-01-29 11:36:29 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20110129113629-qisrm2kdqlurc7t3
Tags: 2.9.11-1
* Removed bug-555869-ftbfs_with_binutils_gold.dpatch since upstream has
  already taken care of the issue.
* Removed bug-528229.dpatch since the pkgconfig files are now also split
  in upstream.
* Removed explicit dependency on GLU.
* Upstream no longer includes osgIntrospection (Closes: #592420).
* Disabled zip plugin as its implementation stores an embedded copy of
  zlib.
* Enabled Qt support. Thanks James Goppert.
* Enabled SVG and PDF plugins. Thanks James Goppert.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
INCLUDE_DIRECTORIES(${FBX_ROOT}/include)
 
1
INCLUDE_DIRECTORIES(${FBX_INCLUDE_DIR})
2
2
 
3
3
SET(TARGET_SRC
4
4
    fbxRAnimation.cpp
7
7
    fbxRMesh.cpp
8
8
    fbxRNode.cpp
9
9
    ReaderWriterFBX.cpp
 
10
    WriterCompareTriangle.cpp
10
11
    WriterNodeVisitor.cpp
11
12
    fbxMaterialToOsgStateSet.cpp
12
13
)
13
14
 
14
15
SET(TARGET_H 
15
 
    fbxRAnimation.h
16
 
    fbxRCamera.h
17
 
    fbxRLight.h
18
 
    fbxRMesh.h
19
 
    fbxRNode.h
 
16
    fbxMaterialToOsgStateSet.h
 
17
    fbxReader.h
20
18
    ReaderWriterFBX.h
 
19
    WriterCompareTriangle.h
21
20
    WriterNodeVisitor.h
22
 
    fbxMaterialToOsgStateSet.h
23
21
)
24
22
 
25
23
ADD_DEFINITIONS(-DKFBX_PLUGIN -DKFBX_FBXSDK -DKFBX_NODLL)