I have SFML2-Snapshot and cmake working fine in windows and ubuntu, now I want to get the dev environment working on the mac as well.. but I can not seam to get the cmake to work. I am new to mac, so bear with me.
I installed xcode from the app market, then I installed cmake from the cmake website though the downloadable mac binary link on its download page. In a terminal I can run cmake fine so it seams to be working...
When I run with cmake -i i get this error....
cmake -i
Would you like to see advanced options? [No]:
Please wait while cmake processes CMakeLists.txt files....
CMake Error: CMake was unable to find a build program corresponding to "Unix Makefiles". CMAKE_MAKE_PROGRAM is not set. You probably need to select a different build tool.
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_C_COMPILER_ENV_VAR
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_C_COMPILER
CMake Error: Could not find cmake module file:/Users/itisme/Development/_cMake/SFML2-Snap/CMakeFiles/CMakeCCompiler.cmake
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_CXX_COMPILER_ENV_VAR
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_CXX_COMPILER
CMake Error: Could not find cmake module file:/Users/itisme/Development/_cMake/SFML2-Snap/CMakeFiles/CMakeCXXCompiler.cmake
CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage
CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage
I also tried cmake -G "MakeFile" -i and cmake -G "Unix Makefiles"
I also tried the gui...
I know there is a basic error in my dev environment somewhere.. any idea where?