fish: add OS specific configs (c compiler, qt5 dir)

master
Alison Watson 2019-06-28 20:35:51 -04:00
parent f450c85871
commit dadf0cace4
1 changed files with 9 additions and 0 deletions

9
scripts/fish/os.fish Normal file
View File

@ -0,0 +1,9 @@
switch (uname)
case Linux
set -x CC clang
set -x CXX clang++
case Darwin
set -x Qt5_DIR /usr/local/opt/qt/
end
## EOF