Add cmake scripts
This commit is contained in:
Executable
+6
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
curr_script=$(realpath "${BASH_SOURCE[0]}")
|
||||
path_to_add=${devenver_root}/CMake/3.29.1/bin
|
||||
echo [DEVENVER] \"${curr_script}\" is adding to path \"${path_to_add}\"
|
||||
|
||||
PATH=${path_to_add}:${PATH} $@
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
curr_script=$(realpath "${BASH_SOURCE[0]}")
|
||||
root_path=${devenver_root}/CMake
|
||||
path_to_add=${root_path}/$1/bin
|
||||
|
||||
if [ "$1" == "list" ]; then
|
||||
ls ${root_path}
|
||||
else
|
||||
echo [DEVENVER] \"${curr_script}\" is adding to path \"${path_to_add}\"
|
||||
PATH=${path_to_add}:${PATH} ${@:2}
|
||||
fi
|
||||
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
curr_script=$(realpath "${BASH_SOURCE[0]}")
|
||||
root_path=${devenver_root}/NodeJS
|
||||
path_to_add=${root_path}/$1/bin
|
||||
|
||||
if [ "$1" == "list" ]; then
|
||||
ls ${root_path}
|
||||
else
|
||||
echo [DEVENVER] \"${curr_script}\" is adding to path \"${path_to_add}\"
|
||||
PATH=${path_to_add}:${PATH} ${@:2}
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user