diff options
author | Kevin Mitchell <kevmitch@gmail.com> | 2015-03-16 15:29:22 -0700 |
---|---|---|
committer | Kevin Mitchell <kevmitch@gmail.com> | 2015-03-16 21:27:48 -0700 |
commit | 70a190af047bdc80ce45b343287bf9ada532f08c (patch) | |
tree | 7e4452a655f264b3b5a96134805636be72a11502 | |
parent | d96fad04bea738ae420f3c8da390e2c8932f5915 (diff) |
build: fix missing windows libraries
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -129,8 +129,8 @@ main_dependencies = [ }, { 'name': 'win32', 'desc': 'win32', - 'deps': [ 'os-win32' ], - 'func': check_libs(['gdi32', 'winmm', 'ole32', 'uuid'], check_true), + 'deps_any': [ 'os-win32', 'os-cygwin' ], + 'func': check_cc(lib=['winmm', 'gdi32', 'ole32', 'uuid']), }, { 'name': '--win32-internal-pthreads', 'desc': 'internal pthread wrapper for win32 (Vista+)', |