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

« back to all changes in this revision

Viewing changes to source/blender/editors/space_node/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
        ../../nodes
32
32
        ../../render/extern/include
33
33
        ../../windowmanager
 
34
        ../../compositor
34
35
        ../../../../intern/guardedalloc
35
36
        ../../../../intern/opennl/extern
36
37
)
41
42
 
42
43
set(SRC
43
44
        drawnode.c
 
45
        node_add.c
44
46
        node_buttons.c
45
47
        node_draw.c
46
48
        node_edit.c
 
49
        node_group.c
47
50
        node_header.c
48
51
        node_ops.c
 
52
        node_relationships.c
49
53
        node_select.c
50
 
        node_state.c
51
54
        node_templates.c
 
55
        node_toolbar.c
 
56
        node_view.c
52
57
        space_node.c
53
58
 
54
59
        node_intern.h
58
63
        add_definitions(-DWITH_INTERNATIONAL)
59
64
endif()
60
65
 
 
66
if(WITH_COMPOSITOR)
 
67
        add_definitions(-DWITH_COMPOSITOR)
 
68
endif()
 
69
 
61
70
blender_add_lib(bf_editor_space_node "${SRC}" "${INC}" "${INC_SYS}")