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
09fd98e2
Verified
Commit
09fd98e2
authored
3 years ago
by
Tobias Frisch
Browse files
Options
Downloads
Patches
Plain Diff
Fixed the axis of space
Signed-off-by:
Tobias Frisch
<
tfrisch@uni-koblenz.de
>
parent
4698d91a
No related branches found
No related tags found
Loading
Pipeline
#26058
passed
3 years ago
Stage: build
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/camera/CMakeLists.txt
+1
-1
1 addition, 1 deletion
modules/camera/CMakeLists.txt
modules/camera/config/GLM.cmake
+5
-2
5 additions, 2 deletions
modules/camera/config/GLM.cmake
with
6 additions
and
3 deletions
modules/camera/CMakeLists.txt
+
1
−
1
View file @
09fd98e2
...
@@ -36,4 +36,4 @@ target_include_directories(vkcv_camera SYSTEM BEFORE PRIVATE ${vkcv_camera_inclu
...
@@ -36,4 +36,4 @@ target_include_directories(vkcv_camera SYSTEM BEFORE PRIVATE ${vkcv_camera_inclu
# add the own include directory for public headers
# add the own include directory for public headers
target_include_directories
(
vkcv_camera BEFORE PUBLIC
${
vkcv_camera_include
}
${
vkcv_camera_includes
}
)
target_include_directories
(
vkcv_camera BEFORE PUBLIC
${
vkcv_camera_include
}
${
vkcv_camera_includes
}
)
target_compile_definitions
(
vkcv_camera PUBLIC
${
vkcv_camera_defin
e
s
}
)
target_compile_definitions
(
vkcv_camera PUBLIC
${
vkcv_camera_defin
ition
s
}
)
This diff is collapsed.
Click to expand it.
modules/camera/config/GLM.cmake
+
5
−
2
View file @
09fd98e2
...
@@ -4,14 +4,17 @@ find_package(glm QUIET)
...
@@ -4,14 +4,17 @@ find_package(glm QUIET)
if
(
glm_FOUND
)
if
(
glm_FOUND
)
list
(
APPEND vkcv_camera_includes
${
GLM_INCLUDE_DIRS
}
)
list
(
APPEND vkcv_camera_includes
${
GLM_INCLUDE_DIRS
}
)
list
(
APPEND vkcv_camera_libraries glm
)
list
(
APPEND vkcv_camera_libraries glm
)
list
(
APPEND vkcv_camera_definitions GLM_DEPTH_ZERO_TO_ONE
)
list
(
APPEND vkcv_camera_definitions GLM_FORCE_LEFT_HANDED
)
else
()
else
()
if
(
EXISTS
"
${
vkcv_camera_lib_path
}
/glm"
)
if
(
EXISTS
"
${
vkcv_camera_lib_path
}
/glm"
)
add_subdirectory
(
${
vkcv_camera_lib
}
/glm
)
add_subdirectory
(
${
vkcv_camera_lib
}
/glm
)
list
(
APPEND vkcv_camera_libraries glm
)
list
(
APPEND vkcv_camera_libraries glm
)
list
(
APPEND vkcv_camera_defin
e
s GLM_DEPTH_ZERO_TO_ONE
)
list
(
APPEND vkcv_camera_defin
ition
s GLM_DEPTH_ZERO_TO_ONE
)
list
(
APPEND vkcv_camera_defin
e
s GLM_FORCE_LEFT_HANDED
)
list
(
APPEND vkcv_camera_defin
ition
s GLM_FORCE_LEFT_HANDED
)
else
()
else
()
message
(
WARNING
"GLM is required..! Update the submodules!"
)
message
(
WARNING
"GLM is required..! Update the submodules!"
)
endif
()
endif
()
...
...
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