Changeset View
Changeset View
Standalone View
Standalone View
source/creator/CMakeLists.txt
| Show First 20 Lines • Show All 817 Lines • ▼ Show 20 Lines | if(NOT CMAKE_CL_64) | ||||
| ) | ) | ||||
| endif() | endif() | ||||
| install( # x86 builds can run on x64 Windows, so this is required at all times | install( # x86 builds can run on x64 Windows, so this is required at all times | ||||
| FILES ${LIBDIR}/thumbhandler/lib/BlendThumb64.dll | FILES ${LIBDIR}/thumbhandler/lib/BlendThumb64.dll | ||||
| DESTINATION "." | DESTINATION "." | ||||
| ) | ) | ||||
| install( | |||||
| FILES | |||||
| ${CMAKE_SOURCE_DIR}/release/windows/batch/blender_debug_gpu.cmd | |||||
| ${CMAKE_SOURCE_DIR}/release/windows/batch/blender_debug_gpu_glitchworkaround.cmd | |||||
| ${CMAKE_SOURCE_DIR}/release/windows/batch/blender_debug_log.cmd | |||||
| ${CMAKE_SOURCE_DIR}/release/windows/batch/blender_factory_startup.cmd | |||||
| DESTINATION "." | |||||
| ) | |||||
| elseif(APPLE) | elseif(APPLE) | ||||
| # handy install macro to exclude files, we use \$ escape for the "to" | # handy install macro to exclude files, we use \$ escape for the "to" | ||||
| # argument when calling so ${BUILD_TYPE} does not get expanded | # argument when calling so ${BUILD_TYPE} does not get expanded | ||||
| macro(install_dir from to) | macro(install_dir from to) | ||||
| install( | install( | ||||
| DIRECTORY ${from} | DIRECTORY ${from} | ||||
| DESTINATION ${to} | DESTINATION ${to} | ||||
| ▲ Show 20 Lines • Show All 183 Lines • Show Last 20 Lines | |||||