gitignore

This commit is contained in:
Angie 2024-05-19 19:10:19 -04:00
parent b47b52f540
commit 72d69917ec
3 changed files with 11 additions and 2 deletions

9
.gitignore vendored Normal file
View file

@ -0,0 +1,9 @@
build/
temp/
.vscode/
*.o
*.elf
*.z64
*.n64
*.v64

View file

@ -4,5 +4,5 @@ project(N64ModernRuntime)
set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED True) set(CMAKE_CXX_STANDARD_REQUIRED True)
add_subdirectory(librecomp)
add_subdirectory(ultramodern) add_subdirectory(ultramodern)
# add_subdirectory(librecomp)

View file

@ -1,6 +1,6 @@
# N64 Modern Runtime # N64 Modern Runtime
> Note > Note
This repo is a WIP as files are moved out of Zelda64Recomp and genericized. It cannot be used directly in its current state. This repo is a WIP as files are moved out of Zelda64Recomp and genericized. It cannot be used directly in its current state.
This repo contains two libraries: Ultramodern and Librecomp. This repo contains two libraries: Ultramodern and Librecomp.