I would like to output my library into different folder based on the platform/compiler/architecture/configuration, so it should look like this :
platform(arch)-compiler(version)-configuration
A few examples would be:
win32-vc12.0-debug
win32-vc12.0-release
win64-vc14.0-debug
win64-vc14.0-release
unix-gcc6.1-debug
unix-gcc6.1-release
unix-clang3.8-debug
unix-clang3.8-release
I actually have no idea how to generate those, could anyone guide me ? Thank you