diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-06-18 04:59:12 -0400 |
---|---|---|
committer | GPUCode <geoster3d@gmail.com> | 2023-06-18 12:45:12 +0300 |
commit | 6448eade2ef126a88068cde66b77e7788c3fab08 (patch) | |
tree | ac7ff6d8d31defedca403be72068dcdfb07e48ff /externals/CMakeLists.txt | |
parent | 6e293be20bf958a5a8ee940ff1a0e01d81d44ef4 (diff) |
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() # TZDB (Time Zone Database) add_subdirectory(nx_tzdb) +# VMA +add_library(vma vma/vma.cpp) +target_include_directories(vma PUBLIC ./vma/vma/include) +target_link_libraries(vma PRIVATE Vulkan::Headers) + if (NOT TARGET LLVM::Demangle) add_library(demangle demangle/ItaniumDemangle.cpp) target_include_directories(demangle PUBLIC ./demangle) |