Skip to content

JonathanCabezas/3DEngine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Another 3D Engine

A 3D Engine inspired by javidx9 tutorial on YouTube


Using included SDL2 files

  • Compile for debugging
g++ -g -Wall -Wextra -L./lib -I./include src/3DEngine.cpp -o bin/3DEngine -lSDL2
  • Compile for release
g++ -O2 -s -DNDEBUG -Wall -Wextra -L./lib -I./include src/3DEngine.cpp -o bin/3DEngine -lSDL2
  • Run
LD_LIBRARY_PATH=lib bin/3DEngine

Using local SDL2 files

  • Install SDL2
sudo apt install libsdl2-dev
  • Compile for debugging
g++ -g -Wall -Wextra src/3DEngine.cpp -o bin/3DEngine -lSDL2
  • Compile for release
g++ -O2 -s -DNDEBUG -Wall -Wextra src/3DEngine.cpp -o bin/3DEngine -lSDL2
  • Run
bin/3DEngine

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published