摘要: step 1 开始创建一个最简单到CMakeLists文件 : CMakeLists.txt1 cmake_minimum_required (VERSION 2.6) 2 project (Tutorial)3 add_executable (Tutorail tutorial.c)然后创建源文件: tutorial.c 1 // A simple program that computes the square root of a number 2 #include 3 #include 4 #include 5 int main (int argc, char *argv[]) 6... 阅读全文
posted @ 2013-12-04 23:04 mayer21548 阅读(1567) 评论(0) 推荐(0) 编辑