You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: INSTALL.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,13 +15,13 @@ bin2cpp is only available for the Windows platform and has been tested with the
15
15
The following software must be installed on the system for compiling source code:
16
16
17
17
* 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)
1) Download googletest source code to your computer using one of the following:
27
27
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
39
39
3) Open the generated Visual Studio 2010 solution file located in
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,15 +19,15 @@ It's main features are:
19
19
20
20
* Easily converts small files as C++ source code for embedding into a C++ executable.
21
21
* Content extraction supported by a unique function call for each embedded file.
22
-
* Supports a multipleembeddedfiles at once.
23
-
* Makes it harder for resource hacker to modify or steal theembeddedfiles.
24
-
* No third party libraries required forretrievingthe data of theembeddedfiles.
22
+
* Supports a multipleembeddedfiles at once.
23
+
* Makes it harder for resource hacker to modify or steal theembeddedfiles.
24
+
* No third party libraries required forretrievingthe data of theembeddedfiles.
25
25
26
26
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.
27
27
28
28
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.
29
29
30
-
The generated functions that reads and extracts theembeddedcontent does not rely onexternal 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 theembeddedcontent does not rely onexternal 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.
31
31
32
32
# Command Line Usage
33
33
@@ -240,7 +240,7 @@ Test can be executed from the following two locations:
240
240
2) From the output binaries folder:
241
241
1) Open a file navigator and browse to the output folder(for example c:\projects\bin2cpp\msvc\Win32\Release)
242
242
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.
244
244
245
245
See also the latest test results at the beginning of the document.
246
246
@@ -258,7 +258,7 @@ bin2cpp is only available for the Windows platform and has been tested with the
258
258
* Windows XP
259
259
* Windows Vista
260
260
* Windows 7
261
-
261
+
262
262
# Versioning
263
263
264
264
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/
271
271
272
272
# License
273
273
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