Hello,
I have a project setup with the following directory structure
mainLib
inc
src
lib
lib_a
src
inc
lib_b
src
inc
lib_a.lib [Lib file generated from lib_a]
lib_b.lib [Lib file generated from lib_b]
I can mark the lib_a.lib and lib_b.lib files as excluded, which works (otherwise the .libs are automatically included in the mainLib and the resulting .lib file size is large). The problem exists when i rebuild lib_a.lib or lib_b.lib...the lib_a.lib is removed, the project is rebuilt, and when the lib_a.lib file is recreated, it is no longer excluded from the mainLib project.
How can I fix this?
Thanks.