From a443be208c31f9ee18c76f9c2ac7fe2cf7974ac0 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Fri, 2 Sep 2016 09:53:38 -0400 Subject: [PATCH] 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. --- .gitignore | 2 ++ CHANGELOG.md | 6 ++++++ bin/.gitignore | 4 ---- bin/README.md | 8 -------- bin64/.gitignore | 4 ---- bin64/README.md | 10 ---------- 6 files changed, 8 insertions(+), 26 deletions(-) create mode 100644 .gitignore delete mode 100644 bin/.gitignore delete mode 100644 bin/README.md delete mode 100644 bin64/.gitignore delete mode 100644 bin64/README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..99f984bd --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +bin/ +bin64/ diff --git a/CHANGELOG.md b/CHANGELOG.md index b99e3cc1..2f718bfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/bin/.gitignore b/bin/.gitignore deleted file mode 100644 index 4071339b..00000000 --- a/bin/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -* -*/ -!.gitignore -!README.md diff --git a/bin/README.md b/bin/README.md deleted file mode 100644 index 0f47df95..00000000 --- a/bin/README.md +++ /dev/null @@ -1,8 +0,0 @@ -# Build output directory - -To build examples and tests for 32-bit on Windows, change to -this directory and use: - -``` -cmake .. -``` diff --git a/bin64/.gitignore b/bin64/.gitignore deleted file mode 100644 index 4071339b..00000000 --- a/bin64/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -* -*/ -!.gitignore -!README.md diff --git a/bin64/README.md b/bin64/README.md deleted file mode 100644 index d31a8ee9..00000000 --- a/bin64/README.md +++ /dev/null @@ -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.