Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to build libevent version 2.0.10 with Visual Studio 2008

Does anyone have clear instructions on building libevent-2.0.10 with Visual Studio 2008?

like image 257
Rich Avatar asked Mar 13 '11 01:03

Rich


1 Answers

Use the Visual Studio Command Prompt, then

cd \where\you\put\it
nmake -f makefile.nmake

Or if you prefer the IDE, then File + New + Project, Visual C++, General node, pick the Makefile Project template. Name = libevent-2.0.10-stable, Location = parent directory (\where\you\put). OK. Next. Build command = nmake -f makefile.nmake, rest blank.

like image 180
Hans Passant Avatar answered Oct 10 '22 18:10

Hans Passant