Go to file
Tobi-D7 5cca34ede4 The beginning of 0.9.5
- Remove unused stuff
- Start Moving from c stuff to c++ stuff Like mkdir to filesystem
- Remove usless stuff from config
- Begin with Project Li7
2023-08-28 16:33:16 +02:00
.github/workflows __ 2022-04-23 14:56:48 +02:00
.vscode RenderD7 0.9.4 (New Stuff, Lot Fixes, Envtools) 2023-03-24 19:46:41 +01:00
assets The beginning of 0.9.5 2023-08-28 16:33:16 +02:00
external/source The beginning of 0.9.5 2023-08-28 16:33:16 +02:00
include The beginning of 0.9.5 2023-08-28 16:33:16 +02:00
rd7tf The beginning of 0.9.5 2023-08-28 16:33:16 +02:00
source The beginning of 0.9.5 2023-08-28 16:33:16 +02:00
tools RenderD7 0.9.4 (New Stuff, Lot Fixes, Envtools) 2023-03-24 19:46:41 +01:00
.gitignore sef 2022-07-24 01:04:11 +02:00
cformat.sh RenderD7 0.9.4 (New Stuff, Lot Fixes, Envtools) 2023-03-24 19:46:41 +01:00
docsn.css Update Theme 2022-04-13 20:06:50 +02:00
Doxyfile Document_Fix_And0.9.3 2023-03-12 21:06:13 +01:00
envsetup.sh RenderD7 0.9.4 (New Stuff, Lot Fixes, Envtools) 2023-03-24 19:46:41 +01:00
LICENSE Initial commit 2021-04-03 05:49:43 +02:00
logo.png Add Some Tools and Assets to create cpp's for 0.9+ 2023-03-13 21:19:07 +01:00
Makefile Release 0.9.4 2023-03-24 19:53:01 +01:00
README.md The beginning of 0.9.5 2023-08-28 16:33:16 +02:00

LOGO

RenderD7 is now LibRenderD7.

Installation

Download a Package From Releses Page https://github.com/NPI-D7/RenderD7/releases/download/v0.9.4/renderd7.tar.bz2 -o renderd7.tar.bz2 Then Extract it to your Libraries Path bzip2 -cd renderd7.tar.bz2 | tar -xf - -C path_to_your_libs Finally put -lrenderd7 to the First Place and add the path_to_your_libs

LIBS	:= -lrenderd7 -lcurl -lstdc++ -lm -lcitro2d -lcitro3d -lctru
#---------------------------------------------------------------------------------
# list of directories containing libraries, this must be the top level containing
# include and lib
#---------------------------------------------------------------------------------
LIBDIRS	:= $(PORTLIBS) $(CTRULIB) ../path_to_your_libs

Make sure that -lrenderd7 is before -lcitro2d, -lcitro3d, -lctru. Here an example tree

Example-App
├── gfx
├── libs
│   ├── include
│   │   ├── rd7.hpp
│   │   └── renderd7
│   └── lib
│       ├── librenderd7.a
│       └── librenderd7d.a
├── Makefile
├── romfs
│   └── gfx
└── src
    └── main.cpp

Back to Old Usage aka Submodule (0.9.5+)

If you want to use RenderD7 as Submodule run git submodule add https://github.com/NPI-D7/RenderD7

And to Use Add this to make file

# Make Sure to Change this paths if your Submodule
# is located somewhere else
RENDERD7_SRC := RenderD7/source RenderD7/external
RENDERD7_INC := RenderD7/include

Now you need to add it to your sources and includes

SOURCES		:=	source $(RENDERD7_SRC)
INCLUDES	:=	source $(RENDERD7_INC)

Example from rd7tf

Credits

  • NPI-D7
    • Tobi-D7 Main Dev

Some Icons are From https://icons8.de/ See Subfolder Readmes