diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-29 22:37:05 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-29 22:37:05 +0100 |
| commit | 2c942f2794bae0500fa514281367eb4365ef59ba (patch) | |
| tree | a2c320f0ca46a8944970b74780bbb9e089560d9a | |
| parent | e5f77dffaf8621f64c89a5200e208eefd4338044 (diff) | |
Add hacky waf script to build locally on OS X
| -rwxr-xr-x | platform/osx/waf | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/platform/osx/waf b/platform/osx/waf new file mode 100755 index 000000000..7423eb973 --- /dev/null +++ b/platform/osx/waf @@ -0,0 +1,13 @@ +#!/bin/bash + +set -e + +ENV=/Users/carl/Environments/osx/10.8 +DEPS=/Users/carl/cdist + +export PKG_CONFIG_PATH=$DEPS/lib/pkgconfig:$ENV/lib/pkgconfig +export LINKFLAGS="-L$ENV/lib" +export CXXFLAGS="-I$ENV/include" +export PATH=$PATH:$ENV/bin +./waf $* + |
