Remove bin and bin64 directories:

These directories are removed, to make it easier for developers
to delete the entire directory contents when rebuilding CMake targets
after a configuration change.
This commit is contained in:
Vinnie Falco
2016-09-02 09:53:38 -04:00
parent fda1493565
commit a443be208c
6 changed files with 8 additions and 26 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
bin/
bin64/

View File

@ -1,3 +1,9 @@
1.0.0-b13
* Remove bin and bin64 directories
--------------------------------------------------------------------------------
1.0.0-b12
* Use -p to print suites from unit test main.

4
bin/.gitignore vendored
View File

@ -1,4 +0,0 @@
*
*/
!.gitignore
!README.md

View File

@ -1,8 +0,0 @@
# Build output directory
To build examples and tests for 32-bit on Windows, change to
this directory and use:
```
cmake ..
```

4
bin64/.gitignore vendored
View File

@ -1,4 +0,0 @@
*
*/
!.gitignore
!README.md

View File

@ -1,10 +0,0 @@
# Build output directory
To build examples and tests for 64-bit on Windows, change to
this directory and use:
```
cmake -G"Visual Studio 14 2015 Win64" ..
```
For later versions of Visual Studio edit the string as appropriate.