Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ilk target directory

If incremental linking is enabled, Visual C++ generates the *.ilk file in $(TargetDir), can I override this behavior and redirect it to another directory? (without using a post-build step)

like image 426
Drealmer Avatar asked Jan 14 '09 15:01

Drealmer


1 Answers

In Visual C++ 6.0 and Visual C++ 2008 is not possible to select a different dir for the ilk file. Valid options for incremental linking are /INCREMENTAL:YES and /INCREMENTAL:NO.

Also, if you create a post build step to move the ilk file to a different location, Visual C++ will not be aware of this, so is the same as dissabling incremental linking at all, since Visual C++ will not find the ilk file.

HTH.

like image 123
jrbjazz Avatar answered Oct 23 '22 04:10

jrbjazz