~ubuntu-branches/ubuntu/trusty/blender/trusty

« back to all changes in this revision

Viewing changes to source/blender/editors/space_clip/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
        ../../makesdna
32
32
        ../../makesrna
33
33
        ../../windowmanager
 
34
        ../../gpu
34
35
        ../../../../intern/guardedalloc
 
36
)
 
37
 
 
38
set(INC_SYS
35
39
        ${GLEW_INCLUDE_PATH}
36
40
)
37
41
 
38
 
set(INC_SYS
39
 
)
40
 
 
41
42
set(SRC
42
 
        space_clip.c
 
43
        clip_buttons.c
 
44
        clip_dopesheet_draw.c
 
45
        clip_dopesheet_ops.c
43
46
        clip_draw.c
 
47
        clip_editor.c
 
48
        clip_graph_draw.c
 
49
        clip_graph_ops.c
 
50
        clip_ops.c
44
51
        clip_toolbar.c
45
 
        clip_ops.c
46
 
        clip_graph_ops.c
47
 
        clip_graph_draw.c
48
 
        clip_editor.c
49
 
        clip_buttons.c
50
52
        clip_utils.c
 
53
        space_clip.c
51
54
        tracking_ops.c
 
55
        tracking_select.c
52
56
 
53
57
        clip_intern.h
54
58
)
55
59
 
 
60
if(WITH_INTERNATIONAL)
 
61
        add_definitions(-DWITH_INTERNATIONAL)
 
62
endif()
 
63
 
56
64
blender_add_lib(bf_editor_space_clip "${SRC}" "${INC}" "${INC_SYS}")