*[[CMake:http://www.cmake.org/]] [#w49469c9]

**ChangeLog [#n963ead6]

http://cmake.org/gitweb?p=cmake.git

**Installation [#w0109a3f]

***MinGW [#t16b8c71]

 $ curl -R -L -O http://www.cmake.org/files/v3.0/cmake-3.0.2.tar.gz
 $ tar xvf cmake-3.0.2.tar.gz
 $ pushd cmake-3.0.2
 $ mkdir build
 $ pushd build
 $ cmake .. -G "MSYS Makefiles" -DCMAKE_INSTALL_PREFIX=/mingw
 $ make
 $ make install
 $ popd
 $ popd
cmake の Makefile でインストールした場合は,make uninstall が使えないので,アンインストールする場合は,ビルドしたディレクトリで
 $ sed -e "s/\r$//" install_manifest.txt | sort | uniq | xargs rm
を実行します.