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

« back to all changes in this revision

Viewing changes to source/blender/blenlib/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#
24
24
# ***** END GPL LICENSE BLOCK *****
25
25
 
 
26
# XXX allowing blenkernel and RNA includes in blenlib is a hack,
 
27
# but needed in a few places atm (bpath.c for instance)
26
28
set(INC 
27
29
        .
28
30
        # ../blenkernel  # dont add this back!
29
31
        ../makesdna
30
32
        ../../../intern/ghost
31
33
        ../../../intern/guardedalloc
 
34
        ../../../extern/wcwidth
32
35
)
33
36
 
34
37
set(INC_SYS
66
69
        intern/math_base.c
67
70
        intern/math_base_inline.c
68
71
        intern/math_color.c
 
72
        intern/math_color_blend_inline.c
69
73
        intern/math_color_inline.c
70
74
        intern/math_geom.c
71
75
        intern/math_geom_inline.c
124
128
        BLI_math.h
125
129
        BLI_math_base.h
126
130
        BLI_math_color.h
 
131
        BLI_math_color_blend.h
127
132
        BLI_math_geom.h
128
133
        BLI_math_inline.h
129
134
        BLI_math_interp.h
144
149
        BLI_string.h
145
150
        BLI_string_cursor_utf8.h
146
151
        BLI_string_utf8.h
 
152
        BLI_sys_types.h
147
153
        BLI_threads.h
148
154
        BLI_utildefines.h
149
155
        BLI_uvproject.h
161
167
        add_definitions(-DWITH_BINRELOC)
162
168
endif()
163
169
 
164
 
if(WITH_OPENMP)
165
 
        add_definitions(-DPARALLEL=1)
166
 
endif()
167
 
 
168
170
if(WIN32)
169
171
        list(APPEND INC
170
172
                ../../../intern/utfconv