You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
288 B
CMake
12 lines
288 B
CMake
9 years ago
|
# Copy resource files into the build directory
|
||
|
set(SDIR ${CMAKE_CURRENT_SOURCE_DIR})
|
||
|
set(DDIR ${OpenMW_BINARY_DIR}/resources/shaders)
|
||
|
|
||
|
set(SHADER_FILES
|
||
|
water_vertex.glsl
|
||
|
water_fragment.glsl
|
||
|
water_nm.png
|
||
|
)
|
||
|
|
||
|
copy_all_files(${CMAKE_CURRENT_SOURCE_DIR} ${DDIR} "${SHADER_FILES}")
|