diff options
| author | 2023-06-18 04:59:12 -0400 | |
|---|---|---|
| committer | 2023-06-18 12:45:12 +0300 | |
| commit | 6448eade2ef126a88068cde66b77e7788c3fab08 (patch) | |
| tree | ac7ff6d8d31defedca403be72068dcdfb07e48ff /externals/CMakeLists.txt | |
| parent | Merge pull request #10797 from lat9nq/tzdb-patch (diff) | |
| download | yuzu-6448eade2ef126a88068cde66b77e7788c3fab08.tar.gz yuzu-6448eade2ef126a88068cde66b77e7788c3fab08.tar.xz yuzu-6448eade2ef126a88068cde66b77e7788c3fab08.zip | |
externals: Add vma and initialize it
video_core: Move vma implementation to library
Diffstat (limited to 'externals/CMakeLists.txt')
| -rw-r--r-- | externals/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 7cce27d51..ca4ebe4b9 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/vma/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) |