随笔分类 -  程序开发

1 2 3 4 5 ··· 9 下一页
摘要:/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 阅读(2) 评论(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 阅读(3) 评论(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)
摘要:解析完命令行参数后,JamToWorkspace.lua会调用BuildProject函数。首先该函数会为 项目的输出路径absoluteOutputPath生成文件夹 os.mkdir(absoluteOutputPath)。 接着BuildProject会生成构建项目所需的相关文件,以及生成ID 阅读全文
posted @ 2026-02-27 00:36 dewxin 阅读(3) 评论(0) 推荐(0)

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