Added a parameter for passing a custom include dir to compile_acc

This commit is contained in:
jpekkila
2019-09-02 20:15:27 +03:00
parent c0ba08133d
commit 18df9e5579

View File

@@ -30,6 +30,12 @@ do
echo "compile_acc.sh -a custom_setup/custom_assembly.sas -p custom_setup/custom_process.sps --header custom_setup/custom_header.h"
exit 0
;;
-I|--include)
shift
ACC_INCLUDE_DIR=${1}
shift
echo "CUSTOM include dir!"
;;
--header)
shift
ACC_HEADER=${1}