Index: third_party/qcms/qcms.gyp |
diff --git a/third_party/qcms/qcms.gyp b/third_party/qcms/qcms.gyp |
index 01b9543e99a9e37d2a328ed8bae237067ab14ac9..896b4188dd5e2ed1ce118ea360035bf9369cafa4 100644 |
--- a/third_party/qcms/qcms.gyp |
+++ b/third_party/qcms/qcms.gyp |
@@ -8,6 +8,7 @@ |
'target_name': 'qcms', |
'product_name': 'qcms', |
'type': '<(library)', |
+ 'toolsets': ['host', 'target'], |
'sources': [ |
'src/chain.c', |
'src/chain.h', |
@@ -42,6 +43,41 @@ |
], |
}, |
], |
+ 'conditions': [ |
+ ['OS == "win"', { |
Noel Gordon
2012/06/21 16:58:33
These gyp changes seems unrelated to the current p
tpayne
2012/07/02 19:22:32
Done.
|
+ 'targets': [ |
+ { |
+ 'target_name': 'qcms_win64', |
+ 'type': 'static_library', |
+ # We can't use qcms target for win64 build since it is a 32-bit |
+ # library. |
+ 'include_dirs': [ |
+ './src', |
+ ], |
+ 'sources': [ |
+ 'src/chain.c', |
+ 'src/chain.h', |
+ 'src/iccread.c', |
+ 'src/matrix.c', |
+ 'src/matrix.h', |
+ 'src/qcms.h', |
+ 'src/qcmsint.h', |
+ 'src/qcmstypes.h', |
+ 'src/transform.c', |
+ 'src/transform-sse1.c', |
+ 'src/transform-sse2.c', |
+ 'src/transform_util.c', |
+ 'src/transform_util.h', |
+ ], |
+ 'configurations': { |
+ 'Common_Base': { |
+ 'msvs_target_platform': 'x64', |
+ }, |
+ }, |
+ }, |
+ ], |
+ }], |
+ ], |
} |
# Local Variables: |