Glut32 is missing with OpenGL [closed] - c++

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying to learn how to use OpenGL with C++ with the book OpenGL 5th Edition.
In the first exmaple they include the files GLTools.h and GLShaderManager.h.
I'm trying to extract the book content and compile it, but I'm getting a lot of errors so I tried to include before those files the file glew.h or Windows.h, after I include this file I get only 1 error.
"error LNK1104: cannot open file 'glut32.lib'" so I tried to google it and I found that I have to add to Microsoft Sdks library so I did it but nothing changed.

Try installing a GLUT implementation.

You need to link to Glut32.lib in project properties.

Related

how do the eclipse cpp find the mingw install path? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
how do the eclipse cpp find the mingw install path?
I can't configure the mingw path into envrionment path, but how can the eclipse cpp ide find the mingw?
Edit:
Try this:
Windows -> preferences-> C/C++ -> Build -> Environment
but what should I add key-value into Environment
Hm, last time I used it, it was expecting MinGW in C:\MinGW by default.

Cannot open include file: 'dxgi1_2.h': No such file or directory [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am including the header file "dxgi1_2.h" in my VC++ code & I see that I'm getting the error.
Cannot open include file: 'dxgi1_2.h': No such file or directory
I know this is because, I need to install something from MSFT related to DX11. (Is the Win8 SDK enough for this header file)
Can anyone kindly let me know how do I fix this error?
Microsoft Windows SDK for Windows 8 and .NET Framework 4.5 v8.0a should be enough, because I found it with everything in the sdk's include directory.
You should probably re-check your include paths in project settings: Project->Settings->C/C++->include. Sometimes even giving correct paths might not work, in which case you need to restart Visual Studio.

OpenCV and RAD studio C++ (getting started) [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
This is my first time on the board and I want to use OpenCV with RAD studio C++. I spend a lot of time, searching and trying how to start with OpenCV and RAD studio but without result.
There are a lot of tutorials with visual studio but can't find any with RAD studio from Embarcadero. I'm wondering if someone on this board is using RAD studio and wants to help, how to start with OpenCV and RAD studio.
Greetings, DreeOlee
Edit_15/12/2012: I added the library's to the settings. See picture. Than I tried opening a sample file in the tutorial folder, "display_image.cpp" and got a lot of errors, see picture. Can anyone help? I don't have any handles to get started at this moment.
EDIT: Changing to other IDE because: http://code.opencv.org/issues/2057

How to ColdFusion plugin in Eclipse IDE [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Hi I'm trying to install ColdFusion plugin in Eclipse IDE. But in the Eclipse Marketplace ColdFusion is not present. So what to do in order to install the ColdFusion plugin..?
I found it by doing a search on CFEclipse. You can also download it from cfclipse.org
Download ColdFusion Builder, you can install it as a standalone IDE or as a plugin to your existing Eclipse installation.

Microsoft Visual Studio to write C language [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Just couple of days ago I saw my friend was using Microsoft Visual studio to write the C language for our assignment and I'm wondering how can he use that.
I use putty connect to our Linux environment but with Microsoft Visual I see that they look more profession and also very useful in a way of managing the codes for us.
I really love to know if is that really works because I didn't have a chance to ask my friend how he gets it work but if anyone of you could please tell me what option would be the same library for C because all I see is C++ and when I tried compile it doesn't seem to work for me
You can use the /TC compiler option. Sometimes even with a .c extension c files are compiled as C++.
The link I have posted tells on how to do it from command line as well as IDE