Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch 1 #7

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ CMakeLists.txt

# Vim swap files
.*.sw*

.bin
build
output
5 changes: 3 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[submodule "buildtools"]
path = buildtools
url = git://github.com/Steveice10/buildtools
branch = master
[submodule "source/svchax"]
path = source/svchax
url = git://github.com/Possum/svchax
branch = master
url = git://github.com/Plailect/svchax
branch = patch-1
Binary file added LumaLocal.bin
Binary file not shown.
15 changes: 10 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,14 @@ ifeq ($(TARGET),3DS)
endif

# COMMON CONFIGURATION #

NAME := Luma Locale Switcher

#---------------------------------------------------------------------------------
# TARGET is the name of the output
# BUILD is the directory where object files & intermediate files will be placed
# SOURCES is a list of directories containing source code
# DATA is a list of directories containing data files
# INCLUDES is a list of directories containing header files
#export TARGET := Luma Locale Switcher
Name := Luma Locale Switcher
BUILD_DIR := build
OUTPUT_DIR := output
INCLUDE_DIRS := include
Expand All @@ -27,8 +32,8 @@ BUILD_FILTER := source/svchax/test/test.c
EXTRA_OUTPUT_FILES :=

LIBRARY_DIRS := $(DEVKITPRO)/libctru
LIBRARIES := citro3d ctru m

LIBRARIES := -lctru -lcitro3d
#needs to be testet -DBUILD_NAME="\"$(TARGET) (`date +'%Y/%m/%d'`)\""#
BUILD_FLAGS := -DLIBKHAX_AS_LIB -DVERSION_STRING="\"`git describe --tags --abbrev=0`\""
RUN_FLAGS :=

Expand Down