I'm using a Windows XP guest with VirtualBox on Arch Linux, but I don't think that's relevant because I got it working just fine on the same setup on my desktop.
Here's how I'm trying to compile:
cmake -G "MinGW Makefiles" .
Here's the output:
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stddef.h
-- Looking for stddef.h - found
-- Check size of void*
-- Check size of void* - done
CMake Error at cmake/Config.make:62 (message):
Unsupported compiler
Call Stack (most recent call first):
CMakeLists.txt:20 (include)
-- Configuring incomplete, errors occurred!
How could I troubleshoot this? C:\MinGW\bin exists in my $PATH variable, and typing this returns the expected result:
> g++
g++: fatal error: no input files
compilation terminated
Thanks for any help!