~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/gameengine/GamePlayer/ghost/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-07-23 08:54:18 UTC
  • mfrom: (14.2.16 sid)
  • mto: (14.2.19 sid)
  • mto: This revision was merged to the branch mainline in revision 42.
  • Revision ID: package-import@ubuntu.com-20120723085418-9foz30v6afaf5ffs
Tags: 2.63a-2
* debian/: Cycles support added (Closes: #658075)
  For now, this top feature has been enabled only
  on [any-amd64 any-i386] architectures because
  of OpenImageIO failing on all others
* debian/: scripts installation path changed
  from /usr/lib to /usr/share:
  + debian/patches/: patchset re-worked for path changing
  + debian/control: "Breaks" field added on yafaray-exporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: CMakeLists.txt 26841 2010-02-12 13:34:04Z campbellbarton $
2
1
# ***** BEGIN GPL LICENSE BLOCK *****
3
2
#
4
3
# This program is free software; you can redistribute it and/or
24
23
#
25
24
# ***** END GPL LICENSE BLOCK *****
26
25
 
27
 
SET(SRC 
 
26
set(INC
 
27
        .
 
28
        ../common
 
29
        ../../BlenderRoutines
 
30
        ../../Converter
 
31
        ../../Expressions
 
32
        ../../GameLogic
 
33
        ../../Ketsji
 
34
        ../../Network
 
35
        ../../Network/LoopBackNetwork
 
36
        ../../Physics/common
 
37
        ../../Rasterizer
 
38
        ../../Rasterizer/RAS_OpenGLRasterizer
 
39
        ../../SceneGraph
 
40
        ../../../blender
 
41
        ../../../blender/blenfont
 
42
        ../../../blender/blenkernel
 
43
        ../../../blender/blenlib
 
44
        ../../../blender/blenloader
 
45
        ../../../blender/gpu
 
46
        ../../../blender/imbuf
 
47
        ../../../blender/makesdna
 
48
        ../../../blender/makesrna
 
49
        ../../../../intern/container
 
50
        ../../../../intern/ghost
 
51
        ../../../../intern/guardedalloc
 
52
        ../../../../intern/moto/include
 
53
        ../../../../intern/string
 
54
)
 
55
 
 
56
set(INC_SYS
 
57
        ${GLEW_INCLUDE_PATH}
 
58
        ${PYTHON_INCLUDE_DIRS}
 
59
)
 
60
 
 
61
set(SRC 
28
62
        GPG_Application.cpp
29
63
        GPG_Canvas.cpp
30
 
        GPG_ghost.cpp
31
64
        GPG_KeyboardDevice.cpp
32
65
        GPG_System.cpp
33
 
)
34
 
 
35
 
SET(INC
36
 
        .
37
 
        ../../../../intern/string
38
 
        ../../../../intern/ghost
39
 
        ../../../../intern/guardedalloc
40
 
        ../../../../intern/moto/include
41
 
        ../../../../source/gameengine/Rasterizer/RAS_OpenGLRasterizer
42
 
        ../../../../source/kernel/gen_system
43
 
        ../../../../source/kernel/gen_messaging
44
 
        ../../../../source/gameengine/Converter
45
 
        ../../../../source/blender/imbuf
46
 
        ../../../../source/gameengine/Ketsji
47
 
        ../../../../source/blender/blenlib
48
 
        ../../../../source/blender/blenkernel
49
 
        ../../../../source/blender/readblenfile
50
 
        ../../../../source/blender
51
 
        ../../../../source/blender/include
52
 
        ../../../../source/blender/makesdna
53
 
        ../../../../source/blender/makesrna
54
 
        ../../../../source/gameengine/Rasterizer
55
 
        ../../../../source/gameengine/GameLogic
56
 
        ../../../../source/gameengine/Expressions
57
 
        ../../../../source/gameengine/Network
58
 
        ../../../../source/gameengine/SceneGraph
59
 
        ../../../../source/gameengine/Physics/common
60
 
        ../../../../source/gameengine/Network/LoopBackNetwork
61
 
        ../../../../source/gameengine/GamePlayer/common
62
 
        ../../../../source/blender/misc
63
 
        ../../../../source/blender/blenloader
64
 
        ../../../../source/blender/gpu
65
 
        ../../../../extern/glew/include
66
 
        ${PYTHON_INC}
67
 
)
68
 
 
69
 
ADD_DEFINITIONS(-DGLEW_STATIC)
70
 
 
71
 
IF(WITH_FFMPEG)
72
 
        ADD_DEFINITIONS(-DWITH_FFMPEG)
73
 
ENDIF(WITH_FFMPEG)
74
 
 
75
 
BLENDERLIB_NOLIST(gp_ghost "${SRC}" "${INC}")
76
 
#env.BlenderLib (libname='gp_ghost', sources=source_files, includes = incs, defines = [], libtype='player',priority=0, compileflags=cflags)
 
66
        GPG_ghost.cpp
 
67
 
 
68
        GPG_Application.h
 
69
        GPG_Canvas.h
 
70
        GPG_KeyboardDevice.h
 
71
        GPG_System.h
 
72
)
 
73
 
 
74
add_definitions(-DGLEW_STATIC)
 
75
 
 
76
if(WITH_CODEC_FFMPEG)
 
77
        add_definitions(-DWITH_FFMPEG)
 
78
endif()
 
79
 
 
80
if(WITH_INTERNATIONAL)
 
81
        add_definitions(-DWITH_INTERNATIONAL)
 
82
endif()
 
83
 
 
84
blender_add_lib_nolist(ge_player_ghost "${SRC}" "${INC}" "${INC_SYS}")