scripts/scripts/fish/os.fish

14 lines
379 B
Fish
Raw Normal View History

switch (uname)
case Linux
2019-07-04 00:44:59 -07:00
set -gx CC clang
set -gx CXX clang++
case Darwin
2019-07-04 00:44:59 -07:00
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