Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
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
atlas
athena
Commits
28f4c63f
Verified
Commit
28f4c63f
authored
1 year ago
by
Tadej Novak
Browse files
Options
Downloads
Patches
Plain Diff
Allow changing asetup command for IDE helpers
parent
f7804c1c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!62778
2023-04-29: merge 23.0 into master
,
!62716
Allow changing asetup command for IDE helpers
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.vscode/IDEHelperScripts/Setup.cmake
+8
-6
8 additions, 6 deletions
.vscode/IDEHelperScripts/Setup.cmake
.vscode/IDEHelperScripts/gdb_wrapper.sh.in
+1
-1
1 addition, 1 deletion
.vscode/IDEHelperScripts/gdb_wrapper.sh.in
with
9 additions
and
7 deletions
.vscode/IDEHelperScripts/Setup.cmake
+
8
−
6
View file @
28f4c63f
...
...
@@ -2,12 +2,6 @@
message
(
STATUS
"Preparing IDE helpers"
)
# singularity settings
set
(
ATLAS_SINGULARITY_IMAGE
""
CACHE PATH
"Use singularity wrapper"
)
set
(
ATLAS_SINGULARITY_ARGS
""
CACHE STRING
"Singularity weapper args"
)
# Common prefix
set
(
ATLAS_IDE_PREFIX
"
${
CMAKE_BINARY_DIR
}
/ide_"
)
...
...
@@ -37,6 +31,14 @@ execute_process(
configure_file
(
"
${
CMAKE_CURRENT_LIST_DIR
}
/flake8_wrapper.sh.in"
"
${
ATLAS_IDE_PREFIX
}
flake8"
@ONLY
)
# gdb wrappers
set
(
ATLAS_IDE_ASETUP_CALL
"asetup --restore"
CACHE STRING
"asetup call for IDE helpers"
)
# singularity settings
set
(
ATLAS_SINGULARITY_IMAGE
""
CACHE PATH
"Use singularity wrapper"
)
set
(
ATLAS_SINGULARITY_ARGS
""
CACHE STRING
"Singularity weapper args"
)
configure_file
(
"
${
CMAKE_CURRENT_LIST_DIR
}
/gdb_wrapper.sh.in"
"
${
ATLAS_IDE_PREFIX
}
gdb_wrapper"
@ONLY
)
if
(
ATLAS_SINGULARITY_IMAGE
)
configure_file
(
"
${
CMAKE_CURRENT_LIST_DIR
}
/gdb_runner_singularity.sh.in"
"
${
ATLAS_IDE_PREFIX
}
gdb_runner"
@ONLY
)
...
...
This diff is collapsed.
Click to expand it.
.vscode/IDEHelperScripts/gdb_wrapper.sh.in
+
1
−
1
View file @
28f4c63f
...
...
@@ -10,7 +10,7 @@ source "${ATLAS_LOCAL_ROOT_BASE}/user/atlasLocalSetup.sh"
echo
binary_dir
=
"@CMAKE_BINARY_DIR@"
pushd
"
${
binary_dir
}
"
||
exit
asetup
--restore
@ATLAS_IDE_ASETUP_CALL@
source
"@ATLAS_PLATFORM@/setup.sh"
popd
||
exit
echo
...
...
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