From 72d69917ec8e2c0f2f4e6f54613b69ca03c1dad1 Mon Sep 17 00:00:00 2001 From: Angie Date: Sun, 19 May 2024 19:10:19 -0400 Subject: [PATCH] gitignore --- .gitignore | 9 +++++++++ CMakeLists.txt | 2 +- README.md | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..061b1c8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +build/ +temp/ +.vscode/ + +*.o +*.elf +*.z64 +*.n64 +*.v64 diff --git a/CMakeLists.txt b/CMakeLists.txt index 6d8c423..dc38987 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,5 +4,5 @@ project(N64ModernRuntime) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED True) -add_subdirectory(librecomp) add_subdirectory(ultramodern) +# add_subdirectory(librecomp) diff --git a/README.md b/README.md index 9d816b0..cab8b4b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # 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 contains two libraries: Ultramodern and Librecomp.