This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ( APPLE ) | |
option( FIX_TBB_RPATH | |
"Fix rpath to brew's TBB when running a build (see comment in CMakeLists.txt)" | |
ON | |
) | |
# The problem: | |
# When installed with homebrew, the TBB library libtbbmalloc_proxy.dylib | |
# includes an RPATH to libtbbmalloc.dylib. When you build & run your | |
# application, it might not be able to find this library and you end up |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type='text/javascript'> | |
var markers = [ | |
{ | |
"name": "Canada", | |
"url": "https://en.wikipedia.org/wiki/Canada", | |
"lat": 56.130366, | |
"lng": -106.346771 | |
}, | |
{ | |
"name": "Anguilla", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# by Andy Maloney | |
# http://asmaloney.com/2013/07/howto/packaging-a-mac-os-x-application-using-a-dmg/ | |
# make sure we are in the correct dir when we double-click a .command file | |
dir=${0%/*} | |
if [ -d "$dir" ]; then | |
cd "$dir" | |
fi |