aboutsummaryrefslogtreecommitdiff
path: root/piex.gyp
diff options
context:
space:
mode:
authorEik Brauer <ebrauer@google.com>2016-01-27 13:25:41 +0100
committerEik Brauer <ebrauer@google.com>2016-01-27 13:25:41 +0100
commita9540117cdd785b0dd75f8c4c28b278f86eb485c (patch)
tree01ffab1667199d718f6b00a570c5168a46671639 /piex.gyp
parentafc6ebdcba72e4eeeaafab1547c19025fcec5d1f (diff)
downloadpiex-a9540117cdd785b0dd75f8c4c28b278f86eb485c.tar.gz
Updates Piex.
Diffstat (limited to 'piex.gyp')
-rwxr-xr-xpiex.gyp19
1 files changed, 16 insertions, 3 deletions
diff --git a/piex.gyp b/piex.gyp
index 091ace0..2df546c 100755
--- a/piex.gyp
+++ b/piex.gyp
@@ -28,7 +28,10 @@
],
},
'include_dirs': ['.'],
- 'cflags': ['-Wsign-compare'],
+ 'cflags': [
+ '-Wsign-compare',
+ '-Wsign-conversion',
+ ],
'dependencies': [
'binary_parse',
'image_type_recognition',
@@ -48,7 +51,10 @@
],
},
'include_dirs': ['.'],
- 'cflags': ['-Wsign-compare'],
+ 'cflags': [
+ '-Wsign-compare',
+ '-Wsign-conversion',
+ ],
}, {
'target_name': 'image_type_recognition',
'type': 'static_library',
@@ -59,11 +65,18 @@
'headers': ['src/image_type_recognition/image_type_recognition_lite.h'],
},
'include_dirs': ['.'],
- 'cflags': ['-Wsign-compare'],
+ 'cflags': [
+ '-Wsign-compare',
+ '-Wsign-conversion',
+ ],
'dependencies': ['binary_parse'],
}, {
'target_name': 'tiff_directory',
'type': 'static_library',
+ 'cflags': [
+ '-Wsign-compare',
+ '-Wsign-conversion',
+ ],
'sources': [
'src/tiff_directory/tiff_directory.cc',
],