fish: use opt/ruby on mac

master
Alison Watson 2019-07-04 03:44:59 -04:00
parent 9cd09a81c2
commit cb2ca91e0a
1 changed files with 7 additions and 4 deletions

View File

@ -1,10 +1,13 @@
switch (uname)
case Linux
set -x CC clang
set -x CXX clang++
set -gx CC clang
set -gx CXX clang++
case Darwin
set -x CMAKE_PREFIX_PATH /usr/local/opt/qt/
set -x DISTCC_HOSTS "192.168.1.2,cpp"
set -gx CMAKE_PREFIX_PATH /usr/local/opt/qt/
set -gx DISTCC_HOSTS "192.168.1.2,cpp"
set -gx fish_user_paths "/usr/local/opt/ruby/bin" $fish_user_paths
set -gx LDFLAGS "-L/usr/local/opt/ruby/lib"
set -gx CPPFLAGS "-I/usr/local/opt/ruby/include"
end
## EOF