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

« back to all changes in this revision

Viewing changes to source/blender/blenloader/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:
25
25
 
26
26
set(INC 
27
27
        .
 
28
        ../blenfont
28
29
        ../blenkernel
29
30
        ../blenlib
30
31
        ../makesdna
44
45
        intern/readfile.c
45
46
        intern/runtime.c
46
47
        intern/undofile.c
 
48
        intern/versioning_250.c
 
49
        intern/versioning_legacy.c
47
50
        intern/writefile.c
48
51
 
 
52
        BLO_blend_defs.h
49
53
        BLO_readfile.h
50
54
        BLO_runtime.h
51
 
        BLO_soundfile.h
52
55
        BLO_sys_types.h
53
56
        BLO_undofile.h
54
57
        BLO_writefile.h
59
62
        add_definitions(-DWITH_BUILDINFO)
60
63
endif()
61
64
 
 
65
if(WITH_INTERNATIONAL)
 
66
        add_definitions(-DWITH_INTERNATIONAL)
 
67
endif()
 
68
 
62
69
blender_add_lib(bf_blenloader "${SRC}" "${INC}" "${INC_SYS}")