Move stuff to subprojects instead

This commit is contained in:
Joshua Ashton 2022-08-12 12:04:10 +00:00
parent 29f8deb608
commit 92f8669d5a
5 changed files with 3 additions and 5 deletions

4
.gitmodules vendored
View File

@ -1,6 +1,6 @@
[submodule "ThirdParty/stb"]
path = thirdparty/stb
path = subprojects/stb
url = https://github.com/nothings/stb
[submodule "thirdparty/miniz"]
path = thirdparty/miniz
path = subprojects/miniz
url = https://github.com/richgel999/miniz

View File

@ -17,9 +17,8 @@ glsl_generator = generator(glsl_compiler,
arguments : glsl_args,
)
orange_include = include_directories(['include', 'thirdparty'])
orange_include = include_directories(['include', 'subprojects'])
sdl2_dep = dependency('SDL2')
vulkan_dep = dependency('vulkan') # get rid of me!
subdir('thirdparty')
subdir('src')

View File

@ -1 +0,0 @@
subdir('miniz')