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

« back to all changes in this revision

Viewing changes to intern/cycles/kernel/shaders/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:
55
55
        node_separate_rgb.osl
56
56
        node_set_normal.osl
57
57
        node_sky_texture.osl
 
58
        node_subsurface_scattering.osl
58
59
        node_tangent.osl
59
60
        node_texture_coordinate.osl
 
61
        node_toon_bsdf.osl
60
62
        node_translucent_bsdf.osl
61
63
        node_transparent_bsdf.osl
62
64
        node_value.osl
65
67
        node_velvet_bsdf.osl
66
68
        node_voronoi_texture.osl
67
69
        node_ward_bsdf.osl
 
70
        node_wavelength.osl
68
71
        node_wave_texture.osl
 
72
        node_wireframe.osl
69
73
)
70
74
 
71
75
set(SRC_OSL_HEADERS
87
91
        string(REPLACE ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} _OSO_FILE ${_OSO_FILE})
88
92
        add_custom_command(
89
93
                OUTPUT ${_OSO_FILE} 
90
 
                COMMAND ${OSL_COMPILER} -O2  -I"${CMAKE_CURRENT_SOURCE_DIR}" ${_OSL_FILE}
 
94
                COMMAND ${OSL_COMPILER} -q -O2  -I"${CMAKE_CURRENT_SOURCE_DIR}" ${_OSL_FILE}
91
95
                DEPENDS ${_OSL_FILE} ${SRC_OSL_HEADERS})
92
96
        list(APPEND SRC_OSO
93
97
                ${_OSO_FILE}