diff options
Diffstat (limited to 'build/linux/system.gyp')
-rw-r--r-- | build/linux/system.gyp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/build/linux/system.gyp b/build/linux/system.gyp index 46bf22c..df40c92 100644 --- a/build/linux/system.gyp +++ b/build/linux/system.gyp @@ -106,5 +106,22 @@ ], }, }, + { + 'target_name': 'gthread', + 'type': 'settings', + 'direct_dependent_settings': { + 'cflags': [ + '<!@(python pkg_config_wrapper.py --cflags gthread-2.0)', + ], + }, + 'link_settings': { + 'ldflags': [ + '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gthread-2.0)', + ], + 'libraries': [ + '<!@(python pkg_config_wrapper.py --libs-only-l gthread-2.0)', + ], + }, + }, ], } |