From 18df9e5579bce4bcb9222aac379ff92d392e9f45 Mon Sep 17 00:00:00 2001 From: jpekkila Date: Mon, 2 Sep 2019 20:15:27 +0300 Subject: [PATCH] Added a parameter for passing a custom include dir to compile_acc --- scripts/compile_acc.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/compile_acc.sh b/scripts/compile_acc.sh index 7ebbd4c..a91d244 100755 --- a/scripts/compile_acc.sh +++ b/scripts/compile_acc.sh @@ -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}