diff options
author | Dane Springmeyer <dane@mapbox.com> | 2014-10-29 16:34:53 -0400 |
---|---|---|
committer | Dane Springmeyer <dane@mapbox.com> | 2014-10-29 16:34:53 -0400 |
commit | cefa3462f85c627ea5c99e8c3caae06d380537c1 (patch) | |
tree | acea8bbc598ffc948e3bddf4a801f6cbee252b61 /test | |
parent | 1069e3b4e9e40916c68d666b75c26bb9400546e6 (diff) | |
download | qtlocation-mapboxgl-cefa3462f85c627ea5c99e8c3caae06d380537c1.tar.gz |
linux test build fixes
Diffstat (limited to 'test')
-rw-r--r-- | test/test.gyp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/test/test.gyp b/test/test.gyp index 19fa190708..9b1e369090 100644 --- a/test/test.gyp +++ b/test/test.gyp @@ -6,12 +6,18 @@ 'target_defaults': { "libraries": [ '-L<(PRODUCT_DIR)/', - '-lmbgl' + '-lmbgl', + '<@(uv_ldflags)', '<@(curl_static_libs)', '<@(png_ldflags)', '<@(sqlite3_ldflags)', '<@(zlib_ldflags)' - ] + ], + 'conditions': [ + ['OS == "linux"', { + 'libraries':[ '-L<(boost_root)/lib','-lboost_regex' ] + }] + ], }, 'targets': [ { 'target_name': 'rotation_range', |