mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 02:56:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			733 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			733 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| if (NOT DEFINED OPENMW_RESOURCES_ROOT)
 | |
|     return()
 | |
| endif()
 | |
| 
 | |
| # Copy resource files into the build directory
 | |
| set(SDIR ${CMAKE_CURRENT_SOURCE_DIR})
 | |
| set(DDIRRELATIVE resources/vfs)
 | |
| copy_all_resource_files(${CMAKE_CURRENT_SOURCE_DIR} ${OPENMW_RESOURCES_ROOT} ${DDIRRELATIVE} "builtin.omwscripts")
 | |
| 
 | |
| set(DDIRRELATIVE resources/vfs/openmw_aux)
 | |
| copy_all_resource_files(${CMAKE_CURRENT_SOURCE_DIR} ${OPENMW_RESOURCES_ROOT} ${DDIRRELATIVE} "openmw_aux/util.lua")
 | |
| 
 | |
| set(LUA_SCRIPTS_FILES
 | |
|     scripts/omw/camera.lua
 | |
|     scripts/omw/head_bobbing.lua
 | |
|     scripts/omw/third_person.lua
 | |
| )
 | |
| 
 | |
| set(DDIRRELATIVE resources/vfs/scripts/omw)
 | |
| copy_all_resource_files(${CMAKE_CURRENT_SOURCE_DIR} ${OPENMW_RESOURCES_ROOT} ${DDIRRELATIVE} "${LUA_SCRIPTS_FILES}")
 |