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
!99
Resolve "Automatische Generierung von cmake-Files für Projekte"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Automatische Generierung von cmake-Files für Projekte"
107-automatische-generierung-von-cmake-files-fur-projekte
into
develop
Overview
0
Commits
11
Pipelines
12
Changes
24
Merged
Tobias Frisch
requested to merge
107-automatische-generierung-von-cmake-files-fur-projekte
into
develop
3 years ago
Overview
0
Commits
11
Pipelines
12
Changes
24
Expand
Closes
#107 (closed)
Edited
3 years ago
by
Tobias Frisch
0
0
Merge request reports
Compare
develop
version 13
e653d0ca
3 years ago
version 12
2790179f
3 years ago
version 11
2790179f
3 years ago
version 10
2790179f
3 years ago
version 9
2790179f
3 years ago
version 8
e1e08f2f
3 years ago
version 7
f0eba63b
3 years ago
version 6
a2a9ed7a
3 years ago
version 5
74f3e2f3
3 years ago
version 4
7cfd54ab
3 years ago
version 3
1eb4d3b8
3 years ago
version 2
1150a709
3 years ago
version 1
98094098
3 years ago
develop (base)
and
latest version
latest version
8b26d7cc
11 commits,
3 years ago
version 13
e653d0ca
10 commits,
3 years ago
version 12
2790179f
9 commits,
3 years ago
version 11
2790179f
9 commits,
3 years ago
version 10
2790179f
9 commits,
3 years ago
version 9
2790179f
9 commits,
3 years ago
version 8
e1e08f2f
8 commits,
3 years ago
version 7
f0eba63b
7 commits,
3 years ago
version 6
a2a9ed7a
6 commits,
3 years ago
version 5
74f3e2f3
5 commits,
3 years ago
version 4
7cfd54ab
4 commits,
3 years ago
version 3
1eb4d3b8
3 commits,
3 years ago
version 2
1150a709
2 commits,
3 years ago
version 1
98094098
1 commit,
3 years ago
24 files
+
210
−
100
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
24
Search (e.g. *.vue) (Ctrl+P)
config/ext/Git.cmake
0 → 100644
+
15
−
0
Options
function
(
use_git_submodule submodule_path submodule_status
)
file
(
GLOB path_glob
"
${
submodule_path
}
/*"
)
list
(
LENGTH path_glob glob_len
)
if
(
glob_len GREATER 0
)
set
(
${
submodule_status
}
TRUE PARENT_SCOPE
)
return
()
endif
()
get_filename_component
(
submodule_name
${
submodule_path
}
NAME
)
message
(
WARNING
"
${
submodule_name
}
is required..! Update the submodules!"
)
set
(
${
submodule_status
}
FALSE PARENT_SCOPE
)
endfunction
()
Loading