diff options
Diffstat (limited to 'externals/CMakeLists.txt')
| -rw-r--r-- | externals/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 7cce27d51..4ff588851 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt | |||
| @@ -143,6 +143,11 @@ endif() | |||
| 143 | # TZDB (Time Zone Database) | 143 | # TZDB (Time Zone Database) |
| 144 | add_subdirectory(nx_tzdb) | 144 | add_subdirectory(nx_tzdb) |
| 145 | 145 | ||
| 146 | # VMA | ||
| 147 | add_library(vma vma/vma.cpp) | ||
| 148 | target_include_directories(vma PUBLIC ./vma/VulkanMemoryAllocator/include) | ||
| 149 | target_link_libraries(vma PRIVATE Vulkan::Headers) | ||
| 150 | |||
| 146 | if (NOT TARGET LLVM::Demangle) | 151 | if (NOT TARGET LLVM::Demangle) |
| 147 | add_library(demangle demangle/ItaniumDemangle.cpp) | 152 | add_library(demangle demangle/ItaniumDemangle.cpp) |
| 148 | target_include_directories(demangle PUBLIC ./demangle) | 153 | target_include_directories(demangle PUBLIC ./demangle) |
| @@ -152,6 +157,9 @@ endif() | |||
| 152 | add_library(stb stb/stb_dxt.cpp) | 157 | add_library(stb stb/stb_dxt.cpp) |
| 153 | target_include_directories(stb PUBLIC ./stb) | 158 | target_include_directories(stb PUBLIC ./stb) |
| 154 | 159 | ||
| 160 | add_library(bc_decoder bc_decoder/bc_decoder.cpp) | ||
| 161 | target_include_directories(bc_decoder PUBLIC ./bc_decoder) | ||
| 162 | |||
| 155 | if (ANDROID) | 163 | if (ANDROID) |
| 156 | if (ARCHITECTURE_arm64) | 164 | if (ARCHITECTURE_arm64) |
| 157 | add_subdirectory(libadrenotools) | 165 | add_subdirectory(libadrenotools) |