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.
openmw/files/builtin_scripts/CMakeLists.txt

9 lines
332 B
CMake

file(GLOB_RECURSE BUILTIN_SCRIPTS LIST_DIRECTORIES false RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} CONFIGURE_DEPENDS "*")
foreach (f ${BUILTIN_SCRIPTS})
if (NOT ("CMakeLists.txt" STREQUAL "${f}"))
copy_resource_file("${CMAKE_CURRENT_SOURCE_DIR}/${f}" "${OpenMW_BINARY_DIR}" "resources/vfs/${f}")
endif()
endforeach (f)