Skip to content

Commit

Permalink
allow to restric to certain module when running sip_includes.sh
Browse files Browse the repository at this point in the history
it's a bit faster 馃嵑
  • Loading branch information
3nids committed Nov 2, 2018
1 parent eb5d487 commit 9158398
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/sip_include.sh
Expand Up @@ -31,7 +31,11 @@ if [[ "$OSTYPE" =~ darwin* ]]; then
GP=g
fi

modules=(core gui analysis server)
if [[ -n $1 ]]; then
modules=($1)
else
modules=(core gui analysis server)
fi
sources=(HDRS MOC_HDRS SRCS)

for module in "${modules[@]}"; do
Expand Down

0 comments on commit 9158398

Please sign in to comment.