Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
VkCV Framework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Vulkan2021
VkCV Framework
Commits
25f97257
Verified
Commit
25f97257
authored
3 years ago
by
Tobias Frisch
Browse files
Options
Downloads
Patches
Plain Diff
[
#59
] Second try to fix MSVC magic
Signed-off-by:
Tobias Frisch
<
tfrisch@uni-koblenz.de
>
parent
9bc4b8c4
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
config/lib/VulkanMemoryAllocator.cmake
+0
-1
0 additions, 1 deletion
config/lib/VulkanMemoryAllocator.cmake
vma/CMakeLists.txt
+1
-4
1 addition, 4 deletions
vma/CMakeLists.txt
vma/vma.cpp
+3
-0
3 additions, 0 deletions
vma/vma.cpp
with
4 additions
and
5 deletions
config/lib/VulkanMemoryAllocator.cmake
+
0
−
1
View file @
25f97257
if
((
EXISTS
"
${
vkcv_lib_path
}
/VulkanMemoryAllocator"
)
AND
(
EXISTS
"
${
vkcv_lib_path
}
/VulkanMemoryAllocator-Hpp"
))
set
(
VMA_PATH
"
${
vkcv_lib_path
}
/VulkanMemoryAllocator"
CACHE INTERNAL
""
)
set
(
VMA_HPP_PATH
"
${
vkcv_lib_path
}
/VulkanMemoryAllocator-Hpp"
CACHE INTERNAL
""
)
set
(
VMA_RECORDING_ENABLED OFF CACHE INTERNAL
""
)
...
...
This diff is collapsed.
Click to expand it.
vma/CMakeLists.txt
+
1
−
4
View file @
25f97257
...
...
@@ -4,7 +4,6 @@ project(VulkanMemoryAllocator)
find_package
(
Vulkan REQUIRED
)
option
(
VMA_PATH
"Location of official API and headers"
""
)
option
(
VMA_HPP_PATH
"Location of C++ headers"
""
)
message
(
STATUS
"VMA_BUILD_SAMPLE =
${
VMA_BUILD_SAMPLE
}
"
)
...
...
@@ -28,9 +27,7 @@ message(STATUS "VMA_DEBUG_INITIALIZE_ALLOCATIONS = ${VMA_DEBUG_INITIALIZE_ALLOCA
message
(
STATUS
"VMA_DEBUG_GLOBAL_MUTEX =
${
VMA_DEBUG_GLOBAL_MUTEX
}
"
)
message
(
STATUS
"VMA_DEBUG_DONT_EXCEED_MAX_MEMORY_ALLOCATION_COUNT =
${
VMA_DEBUG_DONT_EXCEED_MAX_MEMORY_ALLOCATION_COUNT
}
"
)
set
(
VMA_LIBRARY_SOURCE_FILES
${
VMA_PATH
}
/src/VmaUsage.cpp
)
add_library
(
VulkanMemoryAllocator
${
VMA_LIBRARY_SOURCE_FILES
}
)
add_library
(
VulkanMemoryAllocator vma.cpp
)
set_target_properties
(
VulkanMemoryAllocator PROPERTIES
...
...
This diff is collapsed.
Click to expand it.
vma/vma.cpp
0 → 100644
+
3
−
0
View file @
25f97257
#define VMA_IMPLEMENTATION
#include
"vk_mem_alloc.hpp"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment