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
Merge requests
!74
Resolve "Mesh Shader Implementation"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Mesh Shader Implementation"
87-mesh-shader-implementation
into
develop
Overview
1
Commits
47
Pipelines
39
Changes
11
Merged
Ghost User
requested to merge
87-mesh-shader-implementation
into
develop
3 years ago
Overview
1
Commits
47
Pipelines
39
Changes
11
Expand
Closes
#87 (closed)
Edited
3 years ago
by
Tobias Frisch
0
0
Merge request reports
Viewing commit
8048598a
Prev
Next
Show latest version
11 files
+
258
−
174
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
8048598a
[
#87
] init meshlet module
· 8048598a
Sebastian Gaida
authored
3 years ago
modules/meshlet/config/GLM.cmake
0 → 100644
+
23
−
0
Options
find_package
(
glm QUIET
)
if
(
glm_FOUND
)
list
(
APPEND vkcv_meshlet_includes
${
GLM_INCLUDE_DIRS
}
)
list
(
APPEND vkcv_meshlet_libraries glm
)
else
()
if
(
EXISTS
"
${
vkcv_meshlet_lib_path
}
/glm"
)
add_subdirectory
(
${
vkcv_meshlet_lib
}
/glm
)
list
(
APPEND vkcv_meshlet_includes
${
vkcv_meshlet_lib_path
}
/glm
)
list
(
APPEND vkcv_meshlet_libraries glm
)
else
()
message
(
WARNING
"GLM is required..! Update the submodules!"
)
endif
()
endif
()
list
(
APPEND vkcv_meshlet_definitions GLM_DEPTH_ZERO_TO_ONE
)
list
(
APPEND vkcv_meshlet_definitions GLM_FORCE_LEFT_HANDED
)
if
((
WIN32
)
AND
(
${
CMAKE_SIZEOF_VOID_P
}
MATCHES 4
))
list
(
APPEND vkcv_meshlet_definitions GLM_ENABLE_EXPERIMENTAL
)
endif
()
Loading