You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oh-my-fish/plugins/ccache/ccache.load

10 lines
233 B
Fish

# Use ccache for building Android
# See: https://source.android.com/source/initializing.html#setting-up-ccache
set -gx USE_CCACHE 1
if test -n "$CCACHE_ROOT"
_prepend_path $CCACHE_ROOT
else
_prepend_path /usr/lib/ccache/bin
end