mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
306 B
11 lines
306 B
|
14 years ago
|
corrade_add_resource(Shaders shaders PhongShader.frag PhongShader.vert)
|
||
|
|
set(Shaders_SRCS
|
||
|
|
PhongShader.cpp
|
||
|
|
${Shaders}
|
||
|
|
)
|
||
|
|
|
||
|
|
add_library(MagnumShaders SHARED ${Shaders_SRCS})
|
||
|
|
target_link_libraries(MagnumShaders ${MAGNUM_LIBRARY})
|
||
|
|
|
||
|
|
install(TARGETS MagnumShaders DESTINATION ${MAGNUM_LIBRARY_INSTALL_DIR})
|