Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « BlenderRoutines « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d65e6a012df90739dcbde27743d111361baa1302 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46

FILE(GLOB SRC *.cpp)

SET(INC
  .
  ../../../source/kernel/gen_system
  ../../../intern/string
  ../../../intern/guardedalloc
  ../../../source/gameengine/Rasterizer/RAS_OpenGLRasterizer 
  ../../../intern/bmfont
  ../../../source/gameengine/Converter
  ../../../source/blender/imbuf
  ../../../intern/ghost/include
  ../../../intern/moto/include
  ../../../source/gameengine/Ketsji 
  ../../../source/blender/blenlib
  ../../../source/blender/blenkernel 
  ../../../source/blender 
  ../../../source/blender/include
  ../../../source/blender/makesdna 
  ../../../source/gameengine/Rasterizer 
  ../../../source/gameengine/GameLogic
  ../../../source/gameengine/Expressions 
  ../../../source/gameengine/Network
  ../../../source/gameengine/SceneGraph 
  ../../../source/gameengine/Physics/common
  ../../../source/gameengine/Physics/Bullet 
  ../../../source/gameengine/Physics/Sumo
  ../../../source/gameengine/Physics/Sumo/Fuzzics/include 
  ../../../source/gameengine/Network/LoopBackNetwork
  ../../../intern/SoundSystem 
  ../../../source/blender/misc 
  ../../../source/blender/blenloader
  ../../../source/blender/gpu
  ../../../extern/bullet2/src
  ../../../extern/solid
  ../../../extern/glew/include
  ${PYTHON_INC}
)

IF(WITH_FFMPEG)
  ADD_DEFINITIONS(-DWITH_FFMPEG)
ENDIF(WITH_FFMPEG)

BLENDERLIB(bf_blroutines "${SRC}" "${INC}")
#env.BlenderLib ( 'bf_bloutines', sources, Split(incs), [], libtype=['game', 'game2', 'player'], priority=[0, 0, 55] , compileflags=cxxflags)