Q: I'm on Windows and there is a FindGLEW.cmake file in my CMake modules folder, presumably put there when I installed CMake-3.6. I found GLEW on sourceforge and downloaded the zip file for Windows. I unzipped and installed in C:\Program Files\glew…
cmake已经成为了C/C++开源项目的主流构建工具.glew也提供了cmake的脚本,但用cmake编译glew容易采坑:glew的github上的代码,无论是master分支还是glew-2.1.0这个tag,都无法正确用cmake编译(Linux.OSX亲测,均失败):必须从sourceforge上下载glew,sourceforge下载的glew-2.1.0.tgz才能被cmake正确编译. tar -zxvf glew-2.1.0.tgz cd glew-2.1.0 cd build…
CMake入门 CMake是一个跨平台的安装编译工具,可以用简单的语句来描述所有平台的安装(编译过程).他能够输出各种各样的makefile或者project文件,能测试编译器所支持的C++特性,类似UNIX下的automake 一.单个文件 main.cc #include <stdio.h> #include <stdlib.h> double power(double base, int exponent) { int result = base; int i; if (ex…