ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

Other Software > Developer's Corner

Dev-C++ Questions ?

(1/2) > >>

mahesh2k:
[1] Anyone knows how to create OpenGL programs with the help of Dev-C++? What library files or header files are necessary to execute opengl programs? Please help,thanks in advance.
Tried google search/techiwarehouse & list of devc++,but unable to get answer.

[2] How can i program for language like lua or qt/wxwidgets with Dev-c++?

[3] How can i create graphics programs with Dev-c++?


Please help thanks in advance.

Lashiec:
I can answer (partially) the second question. There is another IDE based on Dev-C++, but oriented for wxWidgets programming. Appropriately called wxDev-C++, you can find more information here.

As for the other questions, did you look into the DevPaks? The latest version of Dev-C++ (4.9.9.2 beta) comes with an interface for downloading these packages. I understand that some of the packs might contain what are you asking for.

mouser:
as Lahiec says, there are wxwidgets packs for dev-c++, which basically just help you get wxwidgets installed; you don't actually need them. opengl is same situation i believe.  in general expect to have some frustration while you are getting a big library set up but after that it's easy.

i'm a big fan of dev-c++, and like it a lot.  for wxwidgets c++ coding you might also try the free cross-platform and excellent IDE called CodeBlocks: http://www.codeblocks.org/

you probably can code qt apps with dev-c++ though i've not done it and i know qt is more focused on visual studio since they aim for the commercial market.

regarding lua, that's a separate language and you wont be able to use dev-c++ or codeblocks to do lua development, you'll need a lua IDE for that.  Unless you are asking about adding a lua interpreter to your code, in which case you should be able to add that library without much trouble.

to summarize in general:  in plain standard c++, these things like wxwidgets, opengl, and other stuff, are libraries that dont require any special integration into your IDE -- they are just libraries you need to configure/compile/link.

mahesh2k:
Anyone knows how to reduce the file size of dev-c++ programms even haello world weighs abt 1.6MB which is heavy.
Any optimization tips you know or URL where it is discussed?

app103:
I have only used the compiler in Dev-C++ from command line.

This is the command you are looking for:


--- ---strip <filename>
Don't ask me how to do it in the IDE, I have never actually used the IDE.  :-[

It would be good to take a close look at the documentation for MinGW, as that is the compiler Dev-C++ uses.

Navigation

[0] Message Index

[#] Next page

Go to full version