Skip to content

Commit

Permalink
update 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ManojTGN committed May 3, 2024
1 parent 60f1115 commit 0f62ea8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ascii.rc
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "AceContra\0"
VALUE "FileDescription", "AsciiTable shows octal, hexadecimal, and decimal representations of ascii characters\0"
VALUE "FileVersion", "0.4.1.7\0"
VALUE "FileVersion", "0.5.0.0\0"
VALUE "InternalName", "acecontra.ascii-table\0"
VALUE "LegalCopyright", "AceContra\0"
VALUE "OriginalFilename", "ascii_x64.exe\0"
VALUE "ProductName", "asciiTable\0"
VALUE "ProductVersion", "0.4.1.0\0"
VALUE "ProductVersion", "0.5.0.0\0"
END
END
BLOCK "VarFileInfo"
Expand Down
7 changes: 5 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,16 @@ _test: _build
$(CC) -o test/test.exe build/ascii.o test/test.c
./test/test.exe

rc:
windres ascii.rc -o build/asciirc.o

renderer:
$(CXX) -shared -o build/renderer.dll src/renderer.cpp -Wno-write-strings

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

clean:
rm -rf build/*.o
Expand Down

0 comments on commit 0f62ea8

Please sign in to comment.