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: 410

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

Related posts about bugtrap

  • How do I build BugTrap?

    as seen on Stack Overflow - Search for 'Stack Overflow'
    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… >>> More

  • Uncatchable AccesViolationException

    as seen on Stack Overflow - Search for 'Stack Overflow'
    Hi all, I'm getting close to desperate.. I am developing a field service application for Windows Mobile 6.1 using C# and quite some p/Invoking. (I think I'm referencing about 50 native functions) On normal circumstances this goes without any problem, but when i start stressing the GC i'm getting… >>> More

Related posts about error-handling