mirror of
https://github.com/PretendoNetwork/Inkay.git
synced 2026-08-17 10:12:15 +02:00
feat!: Support for newer Aroma releases (#28)
* Fix aroma beta 17 incompatibilities (no network notification, no unregister boss tasks), and fix debug logger * Update Dockerfile * Fix logger.h * Simplify notifcations * Init nn::boss::Task * Small fixes for the storage/config API usage * Do a bunch of stuff, wish I knew what I did but I honestly forgot most of it (this is not considered a 100% functional commit * Remove remnants of has_displayed_popup variables (not needed anymore) * More notifications stuff * Even more notifications stuff * Fix notifications (yay) (thanks maschell) * Disable debug by default * Fix compiler warnings * Update some stuff, cant test have to go --------- Co-authored-by: Maschell <Maschell@gmx.de>
This commit is contained in:
parent
b239ae82db
commit
b02db3f20b
9 changed files with 200 additions and 187 deletions
5
Makefile
5
Makefile
|
|
@ -24,6 +24,7 @@ BUILD := build
|
|||
SOURCES := src src/patches src/utils src/ext/inih
|
||||
DATA := data
|
||||
INCLUDES := src src/ext/inih
|
||||
#DEBUG := 1
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# options for code generation
|
||||
|
|
@ -33,6 +34,10 @@ CFLAGS := -g -Wall -O2 -ffunction-sections \
|
|||
|
||||
CFLAGS += $(INCLUDE) -D__WIIU__ -D__WUT__ -D__WUPS__
|
||||
|
||||
ifeq ($(DEBUG),1)
|
||||
CFLAGS += -DDEBUG
|
||||
endif
|
||||
|
||||
CXXFLAGS := $(CFLAGS) -std=c++20
|
||||
|
||||
ASFLAGS := -g $(ARCH)
|
||||
|
|
|
|||
Loading…
Reference in a new issue