~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-07-23 08:54:18 UTC
  • mfrom: (14.2.16 sid)
  • mto: (14.2.19 sid)
  • mto: This revision was merged to the branch mainline in revision 42.
  • Revision ID: package-import@ubuntu.com-20120723085418-9foz30v6afaf5ffs
Tags: 2.63a-2
* debian/: Cycles support added (Closes: #658075)
  For now, this top feature has been enabled only
  on [any-amd64 any-i386] architectures because
  of OpenImageIO failing on all others
* debian/: scripts installation path changed
  from /usr/lib to /usr/share:
  + debian/patches/: patchset re-worked for path changing
  + debian/control: "Breaks" field added on yafaray-exporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: CMakeLists.txt 12931 2007-12-17 18:20:48Z theeth $
2
1
# ***** BEGIN GPL LICENSE BLOCK *****
3
2
#
4
3
# This program is free software; you can redistribute it and/or
19
18
#
20
19
# ***** END GPL LICENSE BLOCK *****
21
20
 
22
 
FILE(GLOB SRC *.c)
23
 
 
24
 
SET(INC
 
21
set(INC
25
22
        ../include
26
23
        ../../blenfont
27
24
        ../../blenkernel
28
25
        ../../blenlib
 
26
        ../../blenloader
29
27
        ../../gpu
30
28
        ../../imbuf
31
29
        ../../makesdna
35
33
        ../../../../intern/guardedalloc
36
34
)
37
35
 
38
 
IF(WITH_INTERNATIONAL)
39
 
        ADD_DEFINITIONS(-DINTERNATIONAL)
40
 
ENDIF(WITH_INTERNATIONAL)
41
 
 
42
 
IF(NOT WITH_PYTHON)
43
 
        ADD_DEFINITIONS(-DDISABLE_PYTHON)
44
 
ENDIF(NOT WITH_PYTHON)
45
 
 
46
 
BLENDERLIB(bf_editor_interface "${SRC}" "${INC}")
 
36
set(INC_SYS
 
37
        ${GLEW_INCLUDE_PATH}
 
38
)
 
39
 
 
40
set(SRC
 
41
        interface.c
 
42
        interface_anim.c
 
43
        interface_draw.c
 
44
        interface_handlers.c
 
45
        interface_icons.c
 
46
        interface_layout.c
 
47
        interface_ops.c
 
48
        interface_panel.c
 
49
        interface_regions.c
 
50
        interface_style.c
 
51
        interface_templates.c
 
52
        interface_utils.c
 
53
        interface_widgets.c
 
54
        resources.c
 
55
        view2d.c
 
56
        view2d_ops.c
 
57
 
 
58
        interface_intern.h
 
59
)
 
60
 
 
61
if(WITH_INTERNATIONAL)
 
62
        add_definitions(-DWITH_INTERNATIONAL)
 
63
endif()
 
64
 
 
65
if(WITH_HEADLESS)
 
66
        add_definitions(-DWITH_HEADLESS)
 
67
endif()
 
68
 
 
69
if(WITH_PYTHON)
 
70
        add_definitions(-DWITH_PYTHON)
 
71
endif()
 
72
 
 
73
blender_add_lib(bf_editor_interface "${SRC}" "${INC}" "${INC_SYS}")