Ich versuche, ein cmake hello world-Programm unter Windows 7 x64 mit Visual Studio 2010 und Cygwin auszuführen, kann aber anscheinend auch nicht funktionieren. Meine Verzeichnisstruktur ist wie folgt:
HelloWorld
-- CMakeLists.txt
-- src/
-- -- CMakeLists.txt
-- -- main.cpp
-- build/
Ich mache ein cd build
gefolgt von einem cmake ..
und bekomme eine Fehlermeldung, die das besagt
CMake Error: CMake can not determine linker language for target:helloworld
CMake Error: Cannot determine link language for target "helloworld".
Wenn ich jedoch die Erweiterung von main.cpp in main.c ändere, funktioniert sowohl auf meinem Dateisystem als auch in src/CMakeLists.txt
allem wie erwartet. Dies ist der Fall, der sowohl über die Visual Studio-Eingabeaufforderung (Visual Studio Solution Generator) als auch über das Cygwin-Terminal (Unix Makefiles Generator) ausgeführt wird.
Irgendeine Idee, warum dieser Code nicht funktionieren würde?
CMakeLists.txt
PROJECT(HelloWorld C)
cmake_minimum_required(VERSION 2.8)
# include the cmake modules directory
set(CMAKE_MODULE_PATH ${HelloWorld_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
add_subdirectory(src)
src / CMakeLists.txt
# Include the directory itself as a path to include directories
set(CMAKE_INCLUDE_CURRENT_DIR ON)
# Create a variable called helloworld_SOURCES containing all .cpp files:
set(HelloWorld_SOURCES main.cpp)
# Create an executable file called helloworld from sources:
add_executable(hello ${HelloWorld_SOURCES })
src / main.cpp
int main()
{
return 0;
}