ENH: nmake now uses incremental linking as Msdev does. Faster build (linking a static vtk.exe or paraview.exe could take more than 10 minutes)

This commit is contained in:
Sebastien Barre 2002-10-06 15:10:21 -04:00
parent 9ed93397fb
commit 396f916a42
1 changed files with 2 additions and 2 deletions

View File

@ -100,8 +100,8 @@ SET (CMAKE_LIBRARY_MANAGER_OUTPUT_FILE_FLAG "/out:" CACHE STRING
SET (CMAKE_LINKER link CACHE FILEPATH
"Name of linker used.")
SET (CMAKE_LINKER_FLAGS "/nologo /STACK:10000000 /machine:I386" CACHE STRING
"Flags used by the linker.")
SET (CMAKE_LINKER_FLAGS "/nologo /STACK:10000000 /machine:I386 /INCREMENTAL:YES"
CACHE STRING "Flags used by the linker.")
SET (CMAKE_LINKER_FLAGS_DEBUG "/debug /pdbtype:sept" CACHE STRING
"Flags used by the linker during debug builds.")