Windows 編譯 cmake-gui

本篇介紹 Windows 編譯 cmake-gui 的步驟,

系統環境

作業系統:Win 7
版本:cmake 3.10.2

下載原始碼

官網下載
解壓縮 cmake-3.10.2.zipC:\

編譯

打開 Git Bash 執行下列指令產生 Visual Studio 專案檔

1
2
3
4
5
6
7
cd /c/cmake-3.10.2
mkdir -p build
cd build
cmake .. \
-G "Visual Studio 14 2015" \
-DCMAKE_INSTALL_PREFIX="../../install" \
-DBUILD_QtDialog

打開 C:\cmake-3.10.2\build\CMake.sln 進行編譯

如果編譯 Release 版本的話, 輸出的執行檔在 C:\cmake-3.10.2\build\bin\Release\cmake-gui.exe

相關文章
撰寫 cmake 的 CMakeLists.txt
CMake 專案裡 include .cmake 檔案