Skip to content

Commit 1235e8a

Browse files
committed
Replaced "Google Test" by "Google C++ Testing Framework" which is defined in the prime documentation: https://github.com/google/googletest/blob/release-1.8.0/googletest/docs/V1_6_Primer.md
Fixed other small issue in INSTALL.md
1 parent e592ac3 commit 1235e8a

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

INSTALL.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ bin2cpp is only available for the Windows platform and has been tested with the
1515
The following software must be installed on the system for compiling source code:
1616

1717
* Visual Studio 2010 (or newer) (There are plans to migrate the software to other platform. See [issue #9](https://github.com/end2endzone/bin2cpp/issues/9))
18-
* [Google Test v1.6.0](https://github.com/google/googletest/tree/release-1.6.0) (untested with other versions)
19-
* [CMake](http://www.cmake.org/) for compilation of Google Test library. (Tested with CMake 3.9.6)
20-
* [bin2cpp source code](https://github.com/end2endzone/bin2cpp)
18+
* [Google C++ Testing Framework v1.6.0](https://github.com/google/googletest/tree/release-1.6.0) (untested with other versions)
19+
* [CMake](http://www.cmake.org/) for compilation of Google C++ Testing Framework. (Tested with CMake 3.9.6)
20+
* [bin2cpp source code](https://github.com/end2endzone/bin2cpp/tags)
2121

2222
## Build steps
2323

24-
### Google Test
24+
### Google C++ testing framework
2525

2626
1) Download googletest source code to your computer using one of the following:
2727
1) Download googletest as a [zip file](https://github.com/google/googletest/archive/release-1.6.0.zip) and extract to a temporary directory (for example c:\projects\third_party\googletest).
@@ -39,6 +39,8 @@ The following software must be installed on the system for compiling source code
3939
3) Open the generated Visual Studio 2010 solution file located in
4040
***c:\projects\third_party\googletest\msvc2010\gtest.sln***
4141

42+
4) Build the solution.
43+
4244
### Define environment variables
4345
Note: this step need to be executed once.
4446

@@ -58,3 +60,5 @@ Define the following environement variables:
5860

5961
2) Open the Visual Studio 2010 solution file located in
6062
***c:\projects\bin2cpp\msvc\bin2cpp.sln***
63+
64+
3) Build the solution.

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ It's main features are:
1919

2020
* Easily converts small files as C++ source code for embedding into a C++ executable.
2121
* Content extraction supported by a unique function call for each embedded file.
22-
* Supports a multiple embedded files at once.
23-
* Makes it harder for resource hacker to modify or steal the embedded files.
24-
* No third party libraries required for retrieving the data of the embedded files.
22+
* Supports a multiple embedded files at once.
23+
* Makes it harder for resource hacker to modify or steal the embedded files.
24+
* No third party libraries required for retrieving the data of the embedded files.
2525

2626
bin2cpp is not implemented using [executable resources](http://en.wikipedia.org/wiki/Resource_(Windows)). Instead, bin2cpp creates multiple function calls for retrieving the data which makes it harder to steal the executable's content. It also makes it even harder to replace an existing resource of the executable.
2727

2828
It is designed to be easy to use by developers and to provide easy call functions to get access to the data of the embedded files.
2929

30-
The generated functions that reads and extracts the embedded content does not rely on external libraries so you don't need to setup your projects to use any third party library to start using bin2cpp. All your embedded data can be accessed right away.
30+
The generated functions that reads and extracts the embedded content does not rely on external libraries so you don't need to setup your projects to use any third party library to start using bin2cpp. All your embedded data can be accessed right away.
3131

3232
# Command Line Usage
3333

@@ -240,7 +240,7 @@ Test can be executed from the following two locations:
240240
2) From the output binaries folder:
241241
1) Open a file navigator and browse to the output folder(for example c:\projects\bin2cpp\msvc\Win32\Release)
242242
2) Run the '*generate_test_files.bat*' batch script. The script will generate all required input files.
243-
3) Run the '*bin2cpp_unittest.exe*'
243+
3) Run the '*bin2cpp_unittest.exe*' executable.
244244
245245
See also the latest test results at the beginning of the document.
246246
@@ -258,7 +258,7 @@ bin2cpp is only available for the Windows platform and has been tested with the
258258
* Windows XP
259259
* Windows Vista
260260
* Windows 7
261-
261+
262262
# Versioning
263263
264264
We use [Semantic Versioning 2.0.0](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/end2endzone/bin2cpp/tags).
@@ -271,4 +271,4 @@ See also the list of [contributors](https://github.com/end2endzone/bin2cpp/blob/
271271
272272
# License
273273
274-
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
274+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details

0 commit comments

Comments
 (0)