To easily force a rebuild of a dependency the nuke script will remove all build artifacts for a specific dependency from the dependency build folder. This includes - The Debug and Release build folder of the dependency - The Debug and Release staging output folder of the dependency - The harvest output folder of the dependency For dependencies that have a long dependency chain like embree, shaderc and python extra convenience scripts are added that nuke the additional deps that need to be removed to obtain a fully clean build.
10 lines
149 B
Batchfile
10 lines
149 B
Batchfile
@echo off
|
|
call nuke embree
|
|
call nuke dpcpp
|
|
call nuke vcintrinsics
|
|
call nuke openclheaders
|
|
call nuke icdloader
|
|
call nuke mp11
|
|
call nuke spirvheaders
|
|
|