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
!71
Resolve "Descriptor in multiple shader stages"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Descriptor in multiple shader stages"
76-descriptor-in-multiple-shader-stages
into
develop
Overview
6
Commits
13
Pipelines
13
Changes
8
Merged
Ghost User
requested to merge
76-descriptor-in-multiple-shader-stages
into
develop
3 years ago
Overview
6
Commits
13
Pipelines
13
Changes
1
Expand
Closes
#76 (closed)
Edited
3 years ago
by
Ghost User
0
0
Merge request reports
Compare
version 5
version 12
32fe725e
3 years ago
version 11
2180cfac
3 years ago
version 10
7fae0111
3 years ago
version 9
7fae0111
3 years ago
version 8
f32c2548
3 years ago
version 7
9bd9cf11
3 years ago
version 6
5fad3ab1
3 years ago
version 5
e4e646f3
3 years ago
version 4
c420f75a
3 years ago
version 3
1aa46541
3 years ago
version 2
3a986fbf
3 years ago
version 1
1c92affc
3 years ago
develop (base)
and
version 6
latest version
c6074f90
13 commits,
3 years ago
version 12
32fe725e
12 commits,
3 years ago
version 11
2180cfac
11 commits,
3 years ago
version 10
7fae0111
9 commits,
3 years ago
version 9
7fae0111
9 commits,
3 years ago
version 8
f32c2548
8 commits,
3 years ago
version 7
9bd9cf11
7 commits,
3 years ago
version 6
5fad3ab1
6 commits,
3 years ago
version 5
e4e646f3
5 commits,
3 years ago
version 4
c420f75a
4 commits,
3 years ago
version 3
1aa46541
3 commits,
3 years ago
version 2
3a986fbf
2 commits,
3 years ago
version 1
1c92affc
1 commit,
3 years ago
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
modules/shader_compiler/CMakeLists.txt
+
1
−
1
Options
@@ -28,7 +28,7 @@ include(config/GLSLANG.cmake)
target_link_libraries
(
vkcv_shader_compiler
${
vkcv_shader_compiler_libraries
}
vkcv
)
# including headers of dependencies and the VkCV framework
target_include_directories
(
vkcv_shader_compiler SYSTEM BEFORE PRIVATE
${
vkcv_shader_compiler_includes
}
${
vkcv_include
}
)
target_include_directories
(
vkcv_shader_compiler SYSTEM BEFORE PRIVATE
${
vkcv_shader_compiler_includes
}
${
vkcv_include
}
${
vkcv_includes
}
)
# add the own include directory for public headers
target_include_directories
(
vkcv_shader_compiler BEFORE PUBLIC
${
vkcv_shader_compiler_include
}
)
Loading