diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/linux/system.gyp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/build/linux/system.gyp b/build/linux/system.gyp index 62bbcbb..e6336f5 100644 --- a/build/linux/system.gyp +++ b/build/linux/system.gyp @@ -223,6 +223,26 @@ }]] }, { + 'target_name': 'xext', + 'type': 'settings', + 'conditions': [ + ['_toolset=="target"', { + 'direct_dependent_settings': { + 'cflags': [ + '<!@(<(pkg-config) --cflags xext)', + ], + }, + 'link_settings': { + 'ldflags': [ + '<!@(<(pkg-config) --libs-only-L --libs-only-other xext)', + ], + 'libraries': [ + '<!@(<(pkg-config) --libs-only-l xext)', + ], + }, + }]] + }, + { 'target_name': 'selinux', 'type': 'settings', 'conditions': [ |