我正在尝试使用Windows上的CMake制作一个非常基本的Qt5应用程序.我使用Qt5的文档来使用CMake,我的main.cpp文件只包含一个main函数.
我CMakeLists.txt的确如此:
cmake_minimum_required(VERSION 2.8.9)
project(testproject)
Run Code Online (Sandbox Code Playgroud)
编辑解决方案
set (CMAKE_PREFIX_PATH "C:\\Qt\\Qt5.0.1\\5.0.1\\msvc2010\\")
Run Code Online (Sandbox Code Playgroud)
结束编辑
# Find includes in corresponding build directories
set(CMAKE_INCLUDE_CURRENT_DIR ON)
# Instruct CMake to run moc automatically when needed.
set(CMAKE_AUTOMOC ON)
# Find the QtWidgets library
find_package(Qt5Widgets)
# Tell CMake to create the helloworld executable
add_executable(helloworld hello.cpp)
# Use the Widgets module from Qt 5.
qt5_use_modules(helloworld Widgets)
Run Code Online (Sandbox Code Playgroud)
在MSysGit bash中我输入`$ cmake -G"Visual Studio 11"
我得到这个输出:
$ cmake -G"Visual Studio 11"
-- The …Run Code Online (Sandbox Code Playgroud)