Using SFML 2.0 Release Snapshot on the download page, I've followed the tutorial on building SFML 2.0 on windows with CMake.
Trouble is that the configure script doesn't seem to know my CPU architecture. (which is 64-bit)
Only thing I can think of that may have caused this is that I'm running Windows 8 and it may not build on Windows 8 yet?
Note: Using MinGW Makefiles option with MinGW installed.
CMake configure log:
The C compiler identification is GNU 4.7.2
The CXX compiler identification is GNU 4.7.2
Check for working C compiler: c:/MinGW/bin/gcc.exe
Check for working C compiler: c:/MinGW/bin/gcc.exe -- works
Detecting C compiler ABI info
Detecting C compiler ABI info - done
CMake Error at C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake:78 (configure_file):
configure_file Problem configuring file
Call Stack (most recent call first):
CMakeLists.txt:17 (project)
CMake Error at C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake:83 (include):
include could not find load file:
C:/Users/Ethan/Documents/My Dropbox/Ajax Files/Ajax JAM #2/sfml2-build/CMakeFiles/2.8.10.2/CMakeCCompiler.cmake
Call Stack (most recent call first):
CMakeLists.txt:17 (project)
Check for working CXX compiler: c:/MinGW/bin/g++.exe
Check for working CXX compiler: c:/MinGW/bin/g++.exe -- works
Detecting CXX compiler ABI info
Detecting CXX compiler ABI info - done
CMake Error at cmake/Config.cmake:14 (message):
Unsupported architecture
Call Stack (most recent call first):
CMakeLists.txt:20 (include)
Configuring incomplete, errors occurred!
Any ideas?