-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/stuart6854/VkMana
- Loading branch information
Showing
26 changed files
with
74 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
[submodule "third_party/sdl2"] | ||
path = third_party/sdl2 | ||
path = samples/extern/sdl2 | ||
url = https://github.com/libsdl-org/SDL.git | ||
[submodule "third_party/glm"] | ||
path = third_party/glm | ||
path = samples/extern/glm | ||
url = https://github.com/g-truc/glm.git | ||
[submodule "third_party/glslang"] | ||
path = third_party/glslang | ||
path = extern/glslang | ||
url = https://github.com/KhronosGroup/glslang.git | ||
[submodule "third_party/SPIRV-Tools"] | ||
path = third_party/SPIRV-Tools | ||
path = extern/SPIRV-Tools | ||
url = https://github.com/KhronosGroup/SPIRV-Tools.git | ||
[submodule "third_party/SPIRV-Headers"] | ||
path = third_party/SPIRV-Headers | ||
path = extern/SPIRV-Headers | ||
url = https://github.com/KhronosGroup/SPIRV-Headers.git | ||
[submodule "third_party/shaderc"] | ||
path = third_party/shaderc | ||
path = extern/shaderc | ||
url = https://github.com/google/shaderc.git | ||
[submodule "third_party/vma-hpp"] | ||
path = third_party/vma-hpp | ||
path = extern/vma-hpp | ||
url = https://github.com/stuart6854/VulkanMemoryAllocator-Hpp.git | ||
[submodule "third_party/Vulkan-Headers"] | ||
path = third_party/Vulkan-Headers | ||
path = extern/Vulkan-Headers | ||
url = https://github.com/KhronosGroup/Vulkan-Headers.git | ||
[submodule "third_party/fmt"] | ||
path = third_party/fmt | ||
path = extern/fmt | ||
url = https://github.com/fmtlib/fmt.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
add_subdirectory(Vulkan-Headers) | ||
|
||
add_subdirectory(SPIRV-Headers) | ||
add_subdirectory(SPIRV-Tools) | ||
add_subdirectory(glslang) | ||
|
||
# vma-hpp | ||
add_subdirectory(vma-hpp) | ||
|
||
# ShaderC | ||
option(SHADERC_SKIP_INSTALL "Skip installation" ON) | ||
option(SHADERC_SKIP_TESTS "Skip building tests" ON) | ||
option(SHADERC_SKIP_EXAMPLES "Skip building examples" ON) | ||
option(SHADERC_SKIP_COPYRIGHT_CHECK "Skip copyright check" ON) | ||
option(SHADERC_ENABLE_SHARED_CRT "Use the shared CRT instead of the static CRT" ON) | ||
add_subdirectory(shaderc) | ||
|
||
# FmtLib | ||
if (NOT TARGET fmt) | ||
option(FMT_INSTALL "Generate the install target." OFF) | ||
add_subdirectory(fmt) | ||
endif () |
Submodule SPIRV-Headers
updated
from 000000 to 38f39d
Submodule SPIRV-Tools
updated
from 000000 to 8ee3ae
Submodule Vulkan-Headers
updated
from 000000 to 9d27c8
Submodule fmt
updated
from 000000 to 5cfd28
Submodule glslang
updated
from 000000 to 1dcb07
Submodule shaderc
updated
from 000000 to 3882b1
Submodule vma-hpp
updated
from 000000 to e8f19c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# sdl2 | ||
option(SDL2_DISABLE_SDL2MAIN ON) | ||
option(SDL2_DISABLE_INSTALL ON) | ||
option(SDL2_DISABLE_UNINSTALL ON) | ||
option(SDL_SHARED OFF) | ||
option(SDL_TEST OFF) | ||
option(SDL_TESTS OFF) | ||
option(SDL_OPENGL OFF) | ||
option(SDL_OPENGLES OFF) | ||
option(SDL_DIRECTX OFF) | ||
option(SDL_METAL OFF) | ||
option(SDL_AUDIO OFF) | ||
option(SDL_HAPTIC OFF) | ||
option(SDL_Hidapi OFF) | ||
option(SDL_Sensor OFF) | ||
option(SDL_Locale OFF) | ||
add_subdirectory(sdl2) | ||
set_property(TARGET SDL2-static PROPERTY FOLDER "ThirdParty") | ||
|
||
# GLM | ||
if (NOT TARGET glm) | ||
add_subdirectory(glm) | ||
endif () | ||
|
||
#stb | ||
add_subdirectory(stb) | ||
|
||
# tinygltf | ||
add_subdirectory(tinygltf) | ||
|
||
# tinyobjloader | ||
add_subdirectory(tinyobjloader) |
Submodule glm
updated
from 000000 to bf71a8
Submodule sdl2
updated
from 000000 to 8a5ba4
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.