随笔分类 - Visual Studio
摘要:Ctrl + M + O: 折叠所有方法 Ctrl + M + M: 折叠或者展开当前方法 Ctrl + M + L: 展开所有方法 参考 Visual Studio展开和折叠函数代码 VS2013代码自动折叠的问题
阅读全文
摘要:参考 Visual Studio中通过*.def文件创建dll
阅读全文
摘要:原因: 文本编码问题导致: 检测到Mac文件格式:请将源文件转换为DOS格式或UNIX格式 解决方案: 将原始文本赋值粘贴到==.txt==文本文件内,之后粘贴回去即可 参考 Visual Studio error C4335
阅读全文
摘要:解决方案 参考 Visual Studio 2017 E2512错误解决方案
阅读全文
摘要:参考 Visual Studio 2013安装及番茄助手配置过程
阅读全文
摘要:注:假设需要屏蔽的warning号为8888 第一种方法, 在代码中加入#prama warning(disable:8888) 第二种方法, VS编译器中设置, 以VS2005为例, 打开项目属性-> c/c++ -> Advanced -> Disable Specific Warnings 输
阅读全文
摘要:Qtcreator for Visua Studio 版本默认没有调试器,Qtcreator for MinGW版本有自带的GDB工具 Qtcreator for Visual Studio调试器配置 Qtcreator for Visual Studio版本调试工具配置 Windows下VS编译器
阅读全文
摘要:QT 版本问题 旧版本g2o/cmake_modules/FindQGLViewer.cmake中优先使用QT4 # Need to find both Qt{4,5} and QGLViewer if the QQL support is to be built FIND_PACKAGE(Qt4
阅读全文
摘要:1. octomap 和 可视化工具 octovis是完全独立的,如果不需要可视化工具,octovis完全不可不编译。 2. octovis 工具依赖 libQGLViewer,源代码内置路径为 ..\octomap-devel_1.9.5\octovis\src\extern 可以使用Visual
阅读全文
摘要:https://blog.csdn.net/qing666888/article/details/78260923
阅读全文
摘要:#pragma comment(linker, "/subsystem:windows /ENTRY:mainCRTStartup") 控制台应用程序一般都会显示一个控制台窗口(虚拟DOS窗口),但很多时候控制台程序的执行逻辑根本不需要与用户进行交互,所以显示这个难看的窗口纯属多余。操作系统装载应用
阅读全文
摘要:Visual Studio 中当前项目需要链接某个库时候,可以直接在项目设置中的Linker中添加需要的库,也可以使用如下指令 #pragma comment ( lib,"xxx.lib" ) 表示链接xxx.lib这个库,告诉编译器你要用到xxx.lib库。和在工程设置里写上链入xxx.lib的
阅读全文
摘要:博客转自: https://icytown.com/game/vcpkg-build-opengl/ && https://blog.csdn.net/binbingg/article/details/8653527?utm_source=blogxgwz6 openGL, freeglut, gl
阅读全文
摘要:参考博客:https://blog.csdn.net/xushu_me/article/details/104061980
阅读全文
摘要:Visual Studio中M_PI如何定义 #define _USE_MATH_DEFINES #include <cmath>
阅读全文
摘要:cmake .. -G "Visual Studio 14 2015" cmake .. -G "Visual Studio 12 2013" cmake .. -G "Visual Studio 9 2008"
阅读全文
摘要:dumpbin (这个是visual studio 提供的工具或者可以安装 Dependency Walker)来查看 DLL 依赖关系
阅读全文
摘要:博客参考: https://blog.csdn.net/cjmqas/article/details/79282847#43-%E7%A7%BB%E9%99%A4%E5%85%A8%E5%B1%80%E9%9B%86%E6%88%90 && https://blog.csdn.net/cjmqas/
阅读全文
摘要:博客参考:https://www.hahack.com/codes/openframeworks-intro/#%E4%BB%80%E4%B9%88%E6%98%AF-openframeworks 和 https://www.cnblogs.com/freeblues/p/5754158.html
阅读全文