diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-12-18 13:16:48 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-01-16 22:29:38 -0500 |
commit | b7dd71619519237af1383ee7185846fad3a5cdbe (patch) | |
tree | 2979eb791e974157d9d7fd8addfa0761d21db484 /src/test/Makefile.nmake | |
parent | 0102aaeb6b513fb40fef51103780fe121e13f549 (diff) | |
download | tor-b7dd71619519237af1383ee7185846fad3a5cdbe.tar.gz tor-b7dd71619519237af1383ee7185846fad3a5cdbe.zip |
Add missing includes and libs to makefile.nmake
Fixes bugs 7312 and 7310.
Diffstat (limited to 'src/test/Makefile.nmake')
-rw-r--r-- | src/test/Makefile.nmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/Makefile.nmake b/src/test/Makefile.nmake index aec477cf99..9580e39f4d 100644 --- a/src/test/Makefile.nmake +++ b/src/test/Makefile.nmake @@ -1,6 +1,7 @@ all: test.exe -CFLAGS = /I ..\win32 /I ..\..\..\build-alpha\include /I ..\common /I ..\or +CFLAGS = /I ..\win32 /I ..\..\..\build-alpha\include /I ..\common /I ..\or \ + /I ..\ext LIBS = ..\..\..\build-alpha\lib\libevent.lib \ ..\..\..\build-alpha\lib\libcrypto.lib \ |