资源简介
CMake是一个跨平台的安装(编译)工具,可以用简单的语句来描述所有平台的安装(编译过程)。他能够输出各种各样的makefile或者project文件,能测试编译器所支持的C++特性,类似UNIX下的automake。只是 CMake 的组态档取名为 CMakeLists.txt。Cmake 并不直接建构出最终的软件,而是产生标准的建构档(如 Unix 的 Makefile 或 Windows Visual C++ 的 projects/workspaces),然后再依一般的建构方式使用。这使得熟悉某个集成开发环境(IDE)的开发者可以用标准的方式建构他的软件,这种可以使用各平台的原生建构系统的能力是 CMake 和 SCons 等其他类似系统的区别之处。
代码片段和文件信息
#include
void* start_routine(void* args)
{
return args;
}
int main(void)
{
/* This is a compile and link test no code to actually run things. */
pthread_t thread;
pthread_create(&thread 0 start_routine 0);
pthread_join(thread 0);
return 0;
}
- 上一篇:C语言生成DLL模板
- 下一篇:vc6.0串口通信,采用mscomm控件
评论
共有 条评论