auxbmp thing is not recognizable under debug mode.

Started by
1 comment, last by GekkoCube 20 years, 6 months ago
under release mode my mfc + opengl app builds. however, i receive a link error, something about a mcv4g.lib (or something close to that). sorry im not at my machine. anyway, im loading a texture using the auxbitmap loader thing. nehe''s tutorial for textures uses it. so i cant build in debug mode. please help
Advertisement
Did you add mcv4g.lib to the linker for debug mode?
It sounds like its setup in release but you didnt remember to do it for debug.
Im not sure if your using VC6 or VS.net, but here is how for both.

VC 6
Project -> Settings ->
-Make sure ''Settings For'' dropdown, make sure its set to "Debug"
-Link(Tab) -> add " mcv4g.lib" to the end of ''Objects/Library modules'' input box.
VS.Net
-Select the project
-Project -> Properties
-again, make sure ''Configuration'' dropdown is set to "Active(Debug)"
-Click on the "Linker" folder
-Click on "Input"
-Add " mcv4g.lib" to Additional Dependencies


-BourkeIV
thanks, but i tried that.
i get an error

Linking...
LINK : fatal error LNK1104: cannot open file "mcv4g.lib"
Error executing link.exe.

This topic is closed to new replies.

Advertisement