随笔分类 -  程序开发

1 2 3 4 5 ··· 10 下一页
摘要:https://askubuntu.com/questions/29284/how-do-i-mount-shared-folders-in-ubuntu-using-vmware-tools Experts. I've successfully installed VMware tools for 阅读全文
posted @ 2026-04-02 14:54 dewxin 阅读(1) 评论(0) 推荐(0)
摘要:本文 通过 询问 ChatGPT 获得信息。 首先,我们需要获得Mono源码 , 进入Github下载页面点击下载 然后 我们可以在VMware中安装Ubuntu系统,接着将下好的 源码压缩文件拷贝进去,然后解压。 解压完成后,我们 运行 下面的脚本来获得debug版本的mono ./autogen 阅读全文
posted @ 2026-04-01 15:45 dewxin 阅读(2) 评论(0) 推荐(0)
摘要:转自 https://blog.csdn.net/qq_34160841/article/details/113058756 一般在虚拟机下安装ubuntu系统时,开始分配的硬盘空间会比较小,随着使用的增加发现硬盘不够用了,那应该怎么办呢?重装系统?显然不是,只需要给虚拟机系统硬盘扩容即可。虚拟机系 阅读全文
posted @ 2026-03-31 22:35 dewxin 阅读(3) 评论(0) 推荐(0)
摘要:/DEBUG (Generate debug info) /DEBUG[:{FASTLINK|FULL|NONE}] The /DEBUG linker option creates a debugging information file for the executable. /DEBUG 用于 阅读全文
posted @ 2026-03-26 21:39 dewxin 阅读(2) 评论(0) 推荐(0)
摘要:/c (Compile Without Linking) 只编译不链接。 Compile or assemble the source files, but do not link. Compiling with /c creates .obj files only. You must call L 阅读全文
posted @ 2026-03-26 21:20 dewxin 阅读(4) 评论(0) 推荐(0)
摘要:Variables Basics Jam variables are lists of zero or more elements, with each element being a string value. An undefined variable is indistinguishable 阅读全文
posted @ 2026-03-24 09:42 dewxin 阅读(3) 评论(0) 推荐(0)
摘要:下载安装Mono 进入 Mono下载页面 下载 Mono for Window 64-bit 安装完成后,可以发现Mono根目录位于C:\Program Files\Mono 项目配置 和 VS属性表 项目配置 为了能够访问 Mono的头文件和库文件,我们需要将其添加到VC++ Directorie 阅读全文
posted @ 2026-03-19 18:53 dewxin 阅读(4) 评论(0) 推荐(0)
摘要:使用Jam语法的时候, 由于文档的缺失,以及on语法的用法多样,我经常被on这个 关键字给搞糊涂。 看了一下源码, 感觉需要整理记录一下on相关的内容。 使用on给变量赋值 首先是用on给变量赋值。 这会在Target的专属Variable集合中添加或删除修改变量。 variable on targ 阅读全文
posted @ 2026-03-04 22:50 dewxin 阅读(4) 评论(0) 推荐(0)
摘要:DumpWorkspace 最终会生成对应的解决方案文件和项目文件。 生成项目文件 主要由 vs2012.lua 等文件实现 VisualStudio2012ProjectMetaTable:Write 负责输出 项目文件 vcxproj存储了包含哪些文件 以及构建项目的指令。 最终VS会通过NMa 阅读全文
posted @ 2026-03-02 22:42 dewxin 阅读(2) 评论(0) 推荐(0)
摘要:生成项目工程主要由 Generate_Workspace 这个函数实现。 Generate_Workspace 创建项目工程 进入函数, 首先会生成一个 包含项目对应IDE名称的目录 local outWorkspacePath = os.path.combine(absoluteOutputPat 阅读全文
posted @ 2026-03-02 22:37 dewxin 阅读(3) 评论(0) 推荐(0)

1 2 3 4 5 ··· 10 下一页