Re: [CMake] MinGW Compilers on Windows

2017-12-16 Thread Kevan Hashemi
I just want to throw out there, I use MinGW (with MingW Makefiles) wihtout MSYS just fine for most things including OpenCV which I tested first day and had no issues... but by then others had already commented.All that requires is mingw(64).bin and cmake/bin in your path Thank you, t

Re: [CMake] MinGW Compilers on Windows

2017-12-15 Thread J Decker
On Fri, Dec 15, 2017 at 7:39 AM, Kevan Hashemi wrote: > Dear Alan, > > Thank you for your encouragement to use the "MinGW Makefiles" generator on > Windows, and for pointing out the mingw32-make alternative to just "make" > in MSYS. > > So if you are further interested in the "MinGW Makefiles" ge

Re: [CMake] MinGW Compilers on Windows

2017-12-15 Thread Kevan Hashemi
Dear Alan, Thank you for your encouragement to use the "MinGW Makefiles" generator on Windows, and for pointing out the mingw32-make alternative to just "make" in MSYS. So if you are further interested in the "MinGW Makefiles" generator, you should remove all sh.exe versions from your PATH (i

Re: [CMake] MinGW Compilers on Windows

2017-12-11 Thread Alan W. Irwin
On 2017-12-10 09:18-0500 Kevan Hashemi wrote: Dear Alan, If you need/prefer Unix tools provided by MSYS to build your software, another possible generator you should look at is "MSYS Makefiles". Thank you for this suggestion. The CMake configuration and generation of OpenCV completes withou

Re: [CMake] MinGW Compilers on Windows

2017-12-10 Thread Kevan Hashemi
Dear Alan, If you need/prefer Unix tools provided by MSYS to build your software, another possible generator you should look at is "MSYS Makefiles". Thank you for this suggestion. The CMake configuration and generation of OpenCV completes without errors using "MinGW Makefiles". I get one war

Re: [CMake] MinGW Compilers on Windows

2017-12-08 Thread Alan W. Irwin
On 2017-12-08 14:44-0500 Kevan Hashemi wrote: Dear Konstantin, Of course, but you should choose a suitable generator, e.g. -G "MinGW Makefiles" That makes perfect sense. Indeed, having selected "MinGW Makefiles" I don't evgen have to specify the compilers, I can say "use native compilers".

Re: [CMake] MinGW Compilers on Windows

2017-12-08 Thread Kevan Hashemi
Dear Konstantin, Of course, but you should choose a suitable generator, e.g. -G "MinGW Makefiles" That makes perfect sense. Indeed, having selected "MinGW Makefiles" I don't evgen have to specify the compilers, I can say "use native compilers". I also had to add MinGW/bin to the Winodws path,

Re: [CMake] MinGW Compilers on Windows

2017-12-08 Thread Konstantin Tokarev
08.12.2017, 22:16, "Kevan Hashemi" : > Greetings, > > I'm new to CMake, so please forgive this basic question. > > I'd like to use CMake to build OpenCV on Windows 7 using the C and C++ > compilers that come with my > installation of MinGW. I compile all my other code with GCC compilers, from >

[CMake] MinGW Compilers on Windows

2017-12-08 Thread Kevan Hashemi
Greetings, I'm new to CMake, so please forgive this basic question. I'd like to use CMake to build OpenCV on Windows 7 using the C and C++ compilers that come with my installation of MinGW. I compile all my other code with GCC compilers, from the command line of the MSYS Bash shell, so I figur