摘要: CMake可以在windows和linux下编译,提高代码的重用率。CMake的编译过程和安装软件有些类似,运行exe进行安装,会在指定的文件夹下生成相关文件,CMake也一样。因为CMake是针对程序的,因此,通常在指定的文件夹下会找到一些example。CMake编译的文件是CMakelist.txt,xx.{h, cpp}。PS:CMakelist.txt这个文件我们是可以自己制作的。为了避免本篇博客过长,我将转载别人的方法到新的博客中:http://www.cnblogs.com/qingsunny/archive/2013/05/16/3081460.htmlhttp://www.c 阅读全文
posted @ 2013-05-11 16:31 qingsun_ny 阅读(1990) 评论(0) 推荐(0) 编辑
摘要: 转自:https://github.com/jim-normand/NAM/wiki/Libcitygml-installationBuilding libcityGMLDownload from Google code:http://code.google.com/p/libcitygml/(version 0.1.4 as on 2011/05/12)svn checkout http://libcitygml.googlecode.com/svn/trunk/ libcitygml-read-onlyConfigure with cmake then generate makefiles 阅读全文
posted @ 2013-05-11 16:08 qingsun_ny 阅读(852) 评论(1) 推荐(0) 编辑
摘要: 转自:http://blog.sina.com.cn/s/blog_51c1ed050100zhrc.html一,问题描述MSVCRTD.lib(crtexew.obj) : error LNK2019: 无法解析的外部符号_WinMain@16,该符号在函数 ___tmainCRTStartup 中被引用Debug\jk.exe : fatal error LNK1120: 1 个无法解析的外部命令error LNK2001: unresolved external symbol_WinMain@16debug/main.exe:fatal error LNK 1120:1 unresolv 阅读全文
posted @ 2013-05-11 15:21 qingsun_ny 阅读(3511) 评论(0) 推荐(0) 编辑
摘要: 程序中使用了某一函数,但是却没有为将该函数的库配置路径。添加库的路径就能解决这一问题。 阅读全文
posted @ 2013-05-11 14:45 qingsun_ny 阅读(733) 评论(0) 推荐(0) 编辑
摘要: 下面以新建控制台(console)项目为例:控制台对应的主函数是main();win32对应的主函数是tmain(). 阅读全文
posted @ 2013-05-11 11:22 qingsun_ny 阅读(255) 评论(0) 推荐(0) 编辑