Skip to content
Snippets Groups Projects
Verified Commit 28f4c63f authored by Tadej Novak's avatar Tadej Novak
Browse files

Allow changing asetup command for IDE helpers

parent f7804c1c
No related branches found
No related tags found
2 merge requests!627782023-04-29: merge 23.0 into master,!62716Allow changing asetup command for IDE helpers
......@@ -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 )
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment