Reputation: 867
Intermediate object files always get built in the same directory (which for me defaults to CMakeFiles/<target>.dir/
). Is it possible to make this directory configuration-dependent? That would save me from recompiling all the object files every time I switch configuration.
Upvotes: 3
Views: 841
Reputation:
You should use separate build tree for each build configuration instead.
Upvotes: 4