-
Notifications
You must be signed in to change notification settings - Fork 25
Visual Studio 2015 stuff
BorjaFG edited this page May 19, 2017
·
5 revisions
- Executable files and DLLs should be compiled inside /bin or /Debug depending on the configuration. x64 versions should be appended with x64.
- Intermediate files should all be within its own project folder to avoid messing with other projects' intermediate files: "$(SolutionDir)tmp$(ProjectName)$(Configuration)$(Platform)".
- Static libraries should be compiled in either "$(SolutionDir)bin$(Platform)" or "$(SolutionDir)Debug$(Platform)", depending on the configuration (release or debug).
- If a file needs to be loaded to run the test, set the working directory to $(SolutionDir)/experiments and use relative paths
- Remember to set the appropriate test platform for the current configuration in: Test\Test Settings\Default Processor Architecture