ฉันพยายามเรียกใช้โปรแกรม cmake hello world บน Windows 7 x64 กับทั้ง Visual Studio 2010 และ Cygwin แต่ดูเหมือนจะไม่สามารถใช้งานได้ โครงสร้างไดเร็กทอรีของฉันมีดังนี้:
HelloWorld
-- CMakeLists.txt
-- src/
-- -- CMakeLists.txt
-- -- main.cpp
-- build/
ฉันทำcd build
ตามด้วย a cmake ..
และได้รับข้อผิดพลาดที่ระบุว่า
CMake Error: CMake can not determine linker language for target:helloworld
CMake Error: Cannot determine link language for target "helloworld".
อย่างไรก็ตามหากฉันเปลี่ยนนามสกุลของ main.cpp เป็น main.c ทั้งในระบบไฟล์ของฉันและsrc/CMakeLists.txt
ทุกอย่างทำงานได้ตามที่คาดไว้ กรณีนี้ทำงานจากทั้ง Visual Studio Command Prompt (Visual Studio Solution Generator) และ Cygwin Terminal (Unix Makefiles Generator)
มีความคิดว่าทำไมรหัสนี้ถึงใช้ไม่ได้?
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;
}