move all native projects to native/projects

this should make the folder structure a bit more navigatable
This commit is contained in:
Lily Tsuru 2023-07-16 05:46:49 -04:00
parent c20c852554
commit b4a343e9db
17 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# Clang-Format file # .clang-format for native code portion
BasedOnStyle: Google BasedOnStyle: Google

2
.gitignore vendored
View File

@ -1,6 +1,6 @@
build/ build/
lua/bin lua/bin
native/riscv/ref native/projects/riscv/ref
.cache/ .cache/
.vscode/ .vscode/

View File

@ -3,10 +3,10 @@ project(lcpu-native
DESCRIPTION "Superproject for LCPU GMOD Native Module" DESCRIPTION "Superproject for LCPU GMOD Native Module"
) )
add_subdirectory(lucore) add_subdirectory(projects/lucore)
# RISC-V emulation library # RISC-V emulation library
add_subdirectory(riscv) add_subdirectory(projects/riscv)
# Server-side emulation/assembler library # Garry's Mod bindings
#add_subdirectory(gmsv_lcpu) #add_subdirectory(projects/gmsv_lcpu)