Location of Generated Libraries and Binary Files
The generated binary and library files are placed into top-level directories depending on your platform, as follows:
<project-directory>/ |
lib/ | On Windows: .lib files On UNIX/Linux: shared library (.so) files |
bin/ | On Windows: .exe, .dll and .manifest files On UNIX/Linux: executable files |
For each sub-directory, object files are placed into a special obj directory. For example:
project-directory/
app/
client/
obj/
server/
obj/
...