1
0
Fork 0
mirror of https://github.com/ctruLua/ctruLua.git synced 2025-10-27 16:39:29 +00:00

ADDED SOCKETS ! Added ROMFS support (maybe), Improved the news library, added a VBLank waiting function

Sockets are only very buggy/unstable TCP clients, but working. The library was written from scratch.
This commit is contained in:
Firew0lf 2015-10-17 23:15:06 +02:00
parent dcdeec6525
commit 8500bcb8fa
7 changed files with 222 additions and 16 deletions

View file

@ -25,12 +25,14 @@ include $(DEVKITARM)/3ds_rules
# - <Project name>.png
# - icon.png
# - <libctru folder>/default_icon.png
# ROMFS: if set, use the files at this path to build a ROMFS
#---------------------------------------------------------------------------------
TARGET := ctruLua
BUILD := build
SOURCES := source libs/lua-5.3.1/src
DATA := data
INCLUDES := include libs/lua-5.3.1/src libs/lzlib
#ROMFS := romfs
APP_TITLE := ctruLua
APP_DESCRIPTION := Lua for the 3DS. Yes, it works.
@ -125,6 +127,11 @@ ifeq ($(strip $(NO_SMDH)),)
export _3DSXFLAGS += --smdh=$(CURDIR)/$(TARGET).smdh
endif
ifneq ($(ROMFS),)
export _3DSXFLAGS += --romfs=$(CURDIR)/$(ROMFS)
CFLAGS += -DROMFS
endif
.PHONY: $(BUILD) clean all
#---------------------------------------------------------------------------------