rundemo standalone build fixes

This commit is contained in:
Dane Springmeyer 2013-05-23 00:15:18 -07:00
parent 9107046508
commit 9ede00abf8
2 changed files with 18 additions and 8 deletions

View file

@ -37,8 +37,14 @@ To install gyp, which is pure python do:
svn checkout http://gyp.googlecode.com/svn/trunk/ gyp
cd gyp
sudo python setup.py install
python setup.py install
If you do not have svn installed you can grab gyp from:
https://github.com/TooTallNate/node-gyp/archive/master.zip
# unzip and extract the 'gyp' subfolder then do
cd gyp
python setup.py install
## Building the demo

View file

@ -1,12 +1,5 @@
{
'includes': [ 'common.gypi' ],
'include_dirs': [
'<!@(mapnik-config --includes)',
'<!@(mapnik-config --dep-includes)',
],
'defines': [
'<!@(mapnik-config --defines)',
],
'targets': [
{
'target_name': 'rundemo',
@ -29,6 +22,17 @@
}
}],
[ 'OS=="win"', {
'defines': [
'<!@(mapnik-config --defines)',
],
'libraries': [
'<!@(mapnik-config --libs)',
'<!@(mapnik-config --dep-libs)'
],
'include_dirs': [
'<!@(mapnik-config --includes)',
'<!@(mapnik-config --dep-includes)',
],
'msvs_settings': {
'AdditionalLibraryDirectories': [
'<!@(mapnik-config --ldflags)'