~ubuntu-branches/ubuntu/saucy/blender/saucy-proposed

« back to all changes in this revision

Viewing changes to source/blender/editors/mesh/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:
21
21
set(INC
22
22
        ../include
23
23
        ../uvedit
 
24
        ../../blenfont
24
25
        ../../blenkernel
25
26
        ../../blenlib
26
27
        ../../blenloader
47
48
        editmesh_select.c
48
49
        editmesh_tools.c
49
50
        editmesh_utils.c
50
 
        editmesh_slide.c
51
51
        mesh_data.c
52
52
        mesh_ops.c
53
53
        meshtools.c
68
68
        )
69
69
endif()
70
70
 
 
71
if(WITH_INTERNATIONAL)
 
72
        add_definitions(-DWITH_INTERNATIONAL)
 
73
endif()
 
74
 
 
75
if(WITH_BULLET)
 
76
        add_definitions(-DWITH_BULLET)
 
77
endif()
 
78
 
71
79
blender_add_lib(bf_editor_mesh "${SRC}" "${INC}" "${INC_SYS}")