~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to extern/libopenjpeg/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 14444 2008-04-16 22:40:48Z hos $
2
1
# ***** BEGIN GPL LICENSE BLOCK *****
3
2
#
4
3
# This program is free software; you can redistribute it and/or
13
12
#
14
13
# You should have received a copy of the GNU General Public License
15
14
# along with this program; if not, write to the Free Software Foundation,
16
 
# Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
15
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
16
#
18
17
# The Original Code is Copyright (C) 2006, Blender Foundation
19
18
# All rights reserved.
24
23
#
25
24
# ***** END GPL LICENSE BLOCK *****
26
25
 
27
 
SET(INC . src)
28
 
 
29
 
FILE(GLOB SRC *.c except t1_generate_luts.c)
30
 
ADD_DEFINITIONS(-DWITH_OPENJPEG)
31
 
BLENDERLIB(extern_libopenjpeg "${SRC}" "${INC}")
32
 
#, libtype=['international','player'], priority=[5, 210])
 
26
set(INC
 
27
        .
 
28
)
 
29
 
 
30
set(INC_SYS
 
31
 
 
32
)
 
33
 
 
34
if(WIN32)
 
35
        add_definitions(-DOPJ_STATIC)
 
36
endif()
 
37
 
 
38
set(SRC
 
39
        bio.c
 
40
        cio.c
 
41
        dwt.c
 
42
        event.c
 
43
        image.c
 
44
        j2k.c
 
45
        j2k_lib.c
 
46
        jp2.c
 
47
        jpt.c
 
48
        mct.c
 
49
        mqc.c
 
50
        openjpeg.c
 
51
        pi.c
 
52
        raw.c
 
53
        t1.c
 
54
        t2.c
 
55
        tcd.c
 
56
        tgt.c
 
57
 
 
58
        bio.h
 
59
        cio.h
 
60
        dwt.h
 
61
        event.h
 
62
        fix.h
 
63
        image.h
 
64
        int.h
 
65
        j2k.h
 
66
        j2k_lib.h
 
67
        jp2.h
 
68
        jpt.h
 
69
        mct.h
 
70
        mqc.h
 
71
        openjpeg.h
 
72
        opj_includes.h
 
73
        opj_malloc.h
 
74
        pi.h
 
75
        raw.h
 
76
        t1.h
 
77
        t1_luts.h
 
78
        t2.h
 
79
        tcd.h
 
80
        tgt.h
 
81
)
 
82
 
 
83
blender_add_lib(extern_openjpeg "${SRC}" "${INC}" "${INC_SYS}")