~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to intern/cycles/util/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
 
 
2
set(INC
 
3
        .
 
4
        ${GLEW_INCLUDE_PATH}
 
5
        ${OPENGL_INCLUDE_DIR}
 
6
)
 
7
 
 
8
set(SRC
 
9
        util_cache.cpp
 
10
        util_cuda.cpp
 
11
        util_dynlib.cpp
 
12
        util_md5.cpp
 
13
        util_memarena.cpp
 
14
        util_opencl.cpp
 
15
        util_path.cpp
 
16
        util_string.cpp
 
17
        util_system.cpp
 
18
        util_time.cpp
 
19
        util_transform.cpp
 
20
)
 
21
 
 
22
if(WITH_CYCLES_TEST)
 
23
        list(APPEND SRC
 
24
                util_view.cpp
 
25
        )
 
26
endif()
 
27
 
 
28
set(SRC_HEADERS
 
29
        util_algorithm.h
 
30
        util_args.h
 
31
        util_boundbox.h
 
32
        util_cache.h
 
33
        util_cuda.h
 
34
        util_debug.h
 
35
        util_dynlib.h
 
36
        util_foreach.h
 
37
        util_function.h
 
38
        util_hash.h
 
39
        util_image.h
 
40
        util_list.h
 
41
        util_map.h
 
42
        util_math.h
 
43
        util_md5.h
 
44
        util_memarena.h
 
45
        util_opencl.h
 
46
        util_opengl.h
 
47
        util_param.h
 
48
        util_path.h
 
49
        util_progress.h
 
50
        util_set.h
 
51
        util_string.h
 
52
        util_system.h
 
53
        util_thread.h
 
54
        util_time.h
 
55
        util_transform.h
 
56
        util_types.h
 
57
        util_view.h
 
58
        util_vector.h
 
59
        util_xml.h
 
60
)
 
61
 
 
62
include_directories(${INC})
 
63
 
 
64
add_library(cycles_util ${SRC} ${SRC_HEADERS})