How do I build BugTrap?
Posted
by magnifico
on Stack Overflow
See other posts from Stack Overflow
or by magnifico
Published on 2010-03-11T23:55:13Z
Indexed on
2010/03/12
1:17 UTC
Read the original article
Hit count: 432
I am trying to build the Itellesoft BugTrap source using Visual Studio 2008. I have downloaded and unziped the BugTrap source and the zlib source. I navigated down to ./BugTrap/Win32/BugTrap and opened BugTrap.sln (suggest by the author here).
I used Build->Build Solution and the build failed with a compiler error:
fatal error C1083: Cannot open include file: 'zip.h': No such file or directory
I opened the project properties and added the path to the zlib-vc/zlib/include folder to the list of "Additional Include Directories" and tried to build again.
The second build attempt failed with a linker error:
fatal error LNK1104: cannot open file 'zlibSD.lib'
I opened the zlib project and built the source. The zlib build succeeded. However, the bin directory does not contain a zlibSD.lib. The closest file in name is zlibMSD.lib. This poster on CodeProject seemed to have the same problem I did. But there is no resolution posted.
Hopefully someone out there has experience building this project and can point me in the right direction, I've played with the binary distribution and it seems really slick.
© Stack Overflow or respective owner