Skip to content

Commit

Permalink
Add missing library to setupwinXX.py
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Nov 10, 2014
1 parent ba58fe2 commit 5480ab8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file added windows/libyara/Debug/CL.read.1.tlog
Binary file not shown.
2 changes: 1 addition & 1 deletion yara-python/setupwin32.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
sources=['yara-python.c'],
include_dirs=['../windows/include', '../libyara/include'],
extra_objects=[
'user32.lib', '../windows/libyara/Release/libyara32.lib']
'user32.lib', 'gdi32.lib', '../windows/libyara/Release/libyara32.lib']
)])
2 changes: 1 addition & 1 deletion yara-python/setupwin64.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
sources=['yara-python.c'],
include_dirs=['../windows/include', '../libyara/include'],
extra_objects=[
'user32.lib', '../windows/libyara/Release/libyara64.lib']
'user32.lib', 'gdi32.lib', '../windows/libyara/Release/libyara64.lib']
)])

0 comments on commit 5480ab8

Please sign in to comment.