Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does MinGW support MFC?

Tags:

mingw

mfc

I have developed WinAPI applications using MinGW without problems. Now, can I do the same with MFC?

like image 756
Devel Avatar asked Aug 10 '10 21:08

Devel


People also ask

Is MFC still used in 2021?

MFC has been updated with every release of Visual Studio. It just isn't the headline feature item. As for new development, yes. It is still used and will continue to be so (even though I, like you, prefer not to).

Is MinGW a compiler or IDE?

MinGW is a compiler system based on the GNU GCC and Binutils projects that compiles and links code to be run on Win32 (Windows) systems. It provides C, C++ and Fortran compilers plus other related tools. 'MinGW' refers to the "Minimalist GNU for Windows" project.

Is MinGW same for C and c++?

MinGW is a native C/C++ compiler(GCC) which have free distributable import libraries and header files for building native Windows applications.

Can I use MinGW with Visual Studio?

Install MinGW on WindowsGetting started with MinGW is simple once you have installed the latest Visual Studio Preview. First, you will need to make sure that you select the C++ workload when you install Visual Studio. Next, you will need to download MinGW itself. There are actually many ways to install MinGW.


1 Answers

I'm just guessing here but I think you would need to buy a copy of Visual Studio to get a license to use MFC. MFC is not well known for its portable use of C++ either. If you are familiar with MFC, you might find the learning curve for Qt to be reasonable (which I use with MinGW). The MFC/MinGW route sounds very painful :)

like image 135
Arnold Spence Avatar answered Dec 04 '22 01:12

Arnold Spence