c++ - Using Separate Libs for Debug and Release in VC++ -



c++ - Using Separate Libs for Debug and Release in VC++ -

i'm downloading glfw utilize visual studio 2010. see download has separate folder debug , release builds (each folder has 2 libs , 1 dll), filenames in both folders same. how should configure visual studio pick right file, since expect renaming lib or dll interfere. research has been relatively unfruitful, , think may have ifdef commands or something. in advance.

visual studio build properties (including directories searches files) build configuration specific. on project configuration dialog, press drop-down switch debug release. settings alter impact particular build configuration , no others.

if don't have dropdown, you're using non-advanced interface, no human beingness should ever use. switch advanced interface.

c++ visual-studio linker

Comments

Popular posts from this blog

c# - Move local mssql database to webhosted MYSQL -

java - How to pass parameters between Request-Scoped Controllers? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -