VC++ Express 2005
VC++ Express 2005
Does anyone know how to set all the libraries and stuff in Microsoft Visual C++ Express 2005? I don't think 6.0 is the same as Express...
for project based includes
project->properties->C++->General->Additional Include Directories
project->properties->Linker->General->Additional Library Directories
for global
Tools->Options->Projects and Solutions->VC++ Directories
then there is a combobox to the right which has include and library
there ya are dude.
project->properties->C++->General->Additional Include Directories
project->properties->Linker->General->Additional Library Directories
for global
Tools->Options->Projects and Solutions->VC++ Directories
then there is a combobox to the right which has include and library
there ya are dude.
Cool, it works now but it gives me a warning:Midnight wrote:for project based includes
project->properties->C++->General->Additional Include Directories
project->properties->Linker->General->Additional Library Directories
for global
Tools->Options->Projects and Solutions->VC++ Directories
then there is a combobox to the right which has include and library
there ya are dude.
Is that a optional thing or is it serious?------ Rebuild All started: Project: 06.2DGraphics_vc8, Configuration: Debug Win32 ------
Deleting intermediate and output files for project '06.2DGraphics_vc8', configuration 'Debug|Win32'
Compiling...
main.cpp
Linking...
main.obj : warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/INCREMENTAL:NO' specification
Embedding manifest...
Build log was saved at "file://c:\Irrlicht SDK\irrlicht-1.2\examples\06.2DGraphics\Debug\BuildLog.htm"
06.2DGraphics_vc8 - 0 error(s), 1 warning(s)
========== Rebuild All: 1 succeeded, 0 failed, 0 skipped ==========
That warning isn't a big deal. It is just telling you that the compile and link options are not consistent. If you leave things as-is, you won't be able to use the edit-and-continue debugging feature with whatever library or executable that you are building. This feature can be quite useful.
If you want to use edit-and-continue debugging, you should change the project linker option Enable Incremental Linking [Project | Properties | Linker | General] to Yes. If you don't want to use edit-and-continue, you can set the Debug Information Format option [Project | Properties | C/C++ | General] to any of the other options.
Travis
If you want to use edit-and-continue debugging, you should change the project linker option Enable Incremental Linking [Project | Properties | Linker | General] to Yes. If you don't want to use edit-and-continue, you can set the Debug Information Format option [Project | Properties | C/C++ | General] to any of the other options.
Travis