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 df40c92..8800cb6 100644 --- a/build/linux/system.gyp +++ b/build/linux/system.gyp @@ -123,5 +123,22 @@ ], }, }, + { + 'target_name': 'x11', + 'type': 'settings', + 'direct_dependent_settings': { + 'cflags': [ + '<!@(python pkg_config_wrapper.py --cflags x11)', + ], + }, + 'link_settings': { + 'ldflags': [ + '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other x11)', + ], + 'libraries': [ + '<!@(python pkg_config_wrapper.py --libs-only-l x11)', + ], + }, + }, ], } |