Skip to content

Commit 0f62ea8

Browse files
committed
update 5.0.0
1 parent 60f1115 commit 0f62ea8

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

ascii.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ BEGIN
1717
BEGIN
1818
VALUE "CompanyName", "AceContra\0"
1919
VALUE "FileDescription", "AsciiTable shows octal, hexadecimal, and decimal representations of ascii characters\0"
20-
VALUE "FileVersion", "0.4.1.7\0"
20+
VALUE "FileVersion", "0.5.0.0\0"
2121
VALUE "InternalName", "acecontra.ascii-table\0"
2222
VALUE "LegalCopyright", "AceContra\0"
2323
VALUE "OriginalFilename", "ascii_x64.exe\0"
2424
VALUE "ProductName", "asciiTable\0"
25-
VALUE "ProductVersion", "0.4.1.0\0"
25+
VALUE "ProductVersion", "0.5.0.0\0"
2626
END
2727
END
2828
BLOCK "VarFileInfo"

makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,16 @@ _test: _build
88
$(CC) -o test/test.exe build/ascii.o test/test.c
99
./test/test.exe
1010

11+
rc:
12+
windres ascii.rc -o build/asciirc.o
13+
1114
renderer:
1215
$(CXX) -shared -o build/renderer.dll src/renderer.cpp -Wno-write-strings
1316

14-
_build: clean renderer
17+
_build: clean renderer rc
1518
if [ ! -d build ]; then mkdir build; fi
1619
$(CC) -o build/ascii.o -c src/ascii.c
17-
$(CC) -o build/ascii.exe build/ascii.o src/main.c -Lbuild -lrenderer
20+
$(CC) -o build/ascii.exe build/ascii.o src/main.c -Lbuild -lrenderer build/asciirc.o
1821

1922
clean:
2023
rm -rf build/*.o

0 commit comments

Comments
 (0)