Skip to content

Commit

Permalink
correct Makefile.linux includes
Browse files Browse the repository at this point in the history
add list of depends to README
  • Loading branch information
Apaczer committed Oct 25, 2024
1 parent 9342ae0 commit 9e704b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

ASCIIpOrtal is a text based puzzle game in 2D (SDL).

### Dependencies:

C++ compiler (GCC), SDL1.2 (libsdl1.2-dev), SDLmixer (libsdl-mixer1.2-dev), yaml-cpp (libyaml-cpp-dev), PDCurses (libpdcurses - see submodule)

### Build steps:
#### - initialize submodules
```
Expand Down
2 changes: 1 addition & 1 deletion Makefile.linux
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ DISTNAME := $(DISTNAME)-$(PORT)64

# Custom C flags: you may define ('-D') or unset ('-U') macros to get your specific
# code to work.
CXXFLAGS := $(CXXFLAGS) -IPDCurses -I$(SYSROOT)/usr/include/xcurses `sdl-config --cflags` -U__NOSDL__ -U__NOSOUND__ -U__DINGOO__ -U__GP2X__
CXXFLAGS := $(CXXFLAGS) -IPDCurses -IPDCurses/sdl1 -I$(SYSROOT)/usr/include/xcurses `sdl-config --cflags` -U__NOSDL__ -U__NOSOUND__ -U__DINGOO__ -U__GP2X__

# Custom link flags: either dynamic (default) or static linking (see the last form,
# 'man ld' for details).
Expand Down

0 comments on commit 9e704b1

Please sign in to comment.