Skip to content

Commit 6e6b3ff

Browse files
author
admin
committed
--ignore-externals
1 parent 7921b56 commit 6e6b3ff

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![HOWTO RU](https://img.shields.io/badge/HOWTO-RU-brightgreen.svg?style=flat)](https://clnviewer.github.io/Code-Blocks-Android-NDK/)
2-
[![C::B project template](https://img.shields.io/badge/CodeBlocks-template-brightgreen.svg?style=flat)](https://github.com/ClnViewer/Code-Blocks-Android-NDK/tree/master/CB-%D1%88%D0%B0%D0%B1%D0%BB%D0%BE%D0%BD)
2+
[![C::B project template](https://img.shields.io/badge/CodeBlocks-template-brightgreen.svg?style=flat)](https://github.com/ClnViewer/Code-Blocks-Android-NDK/tree/master/CB-Template)
33
[![License MIT](https://img.shields.io/badge/License-MIT-brightgreen.svg?style=flat)](https://github.com/ClnViewer/Code-Blocks-Android-NDK/blob/master/LICENSE)
44

55
[![Build Travis](https://travis-ci.com/ClnViewer/Code-Blocks-Android-NDK.svg)](https://travis-ci.com/ClnViewer/Code-Blocks-Android-NDK)

cbp2ndk/dist/cbp2ndk.zip

609 Bytes
Binary file not shown.

cbp2ndk/src/cbp2ndk.rc

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,46 @@
2222
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2323
SOFTWARE.
2424
*/
25+
#include "../version.h"
26+
#define _TOSTR(a) #a
27+
#define __TOSTR(a) _TOSTR(a)
28+
2529

2630
MKFDATA RCDATA "../../CB-Template/Makefile"
2731
APPDATA RCDATA "../../CB-Template/Application.mk"
32+
33+
LANGUAGE 0x19, 0x01
34+
1 VERSIONINFO
35+
FILEVERSION CBP_RC_FILEVERSION
36+
PRODUCTVERSION CBP_RC_FILEVERSION
37+
FILEOS 0x4
38+
FILETYPE 0x2
39+
FILESUBTYPE 0x0
40+
FILEFLAGSMASK 0x2
41+
FILEFLAGS 0x2
42+
{
43+
BLOCK "StringFileInfo"
44+
{
45+
BLOCK "040904b0"
46+
{
47+
VALUE "CompanyName", "PS https://clnviewer.github.io/Code-Blocks-Android-NDK/"
48+
VALUE "FileDescription", "Code::Blocks to Android NDK configuration converter"
49+
VALUE "FileVersion", CBP_FULLVERSION_STRING
50+
VALUE "InternalName", "cbp2ndk"
51+
VALUE "LegalCopyright", "Copyright PS 2016-2019. This is freeware."
52+
VALUE "ProductName", "cbp2ndk (" __TOSTR(CBP_REVISION) ") [" __TOSTR(CBP_BUILDS_COUNT) "][" __TOSTR(CBP_BUILD_HISTORY) "]"
53+
VALUE "OriginalFilename", "cbp2ndk.exe"
54+
VALUE "ProductVersion", CBP_FULLVERSION_STRING
55+
VALUE "CompanyShortName", "PS"
56+
VALUE "ProductShortName", "cbp2ndk"
57+
VALUE "LastChange", CBP_YEAR " " CBP_MONTH " " CBP_DATE
58+
VALUE "Official Build", "0"
59+
}
60+
}
61+
62+
BLOCK "VarFileInfo"
63+
{
64+
VALUE "Translation", 0x0419, 1251
65+
}
66+
67+
}

0 commit comments

Comments
 (0)