2016-07-20 Roger
Android OpenGL ES 第四章 - 增加颜色和着色 本系列所有源码地址:https://github.com/Rogero0o/OpenGL_Demo 继续阅读 »
2018-02-03 ruki
此版本主要增加xmake f --menu实现用户自定义图形菜单配置,界面风格类似linux的make menuconfig: 更多使用说明,请阅读:文档手册。 项目源码:Github, Gitee. 新特性 添加del_files()接口去从已添加的文件列表中移除一些文件 添加rule(), add_rules()接口实现自定义构建规则,并且改进add_files("src/*.md", {rule = "markdown"}) 添加os.filesize()接口 添加core.ui.xxx等cui组件模块,实现终端可视化界面,用于实现跟用户进行短暂的交互 通过xmake f --menu实现可视化菜单交互配置,简化工 继续阅读 »
2016-04-25 zzyhappyzzy
iOS
说明 库是程序代码的合集,常见的有开源库和闭源库,其中.a就是闭源库(无法看到具体实现方法),而Github上的代码基本都是开源库。静态库执行时会被复制到可执行文件中,多次调用则会出现冗余拷贝,不建议使用静态库。可以使用动态库.dylib(动态库貌似通不过appstore审核)或者源码。 生成.a文件 一个.a文件,要想兼容各种不同的cpu架构,需要包含各种指令集(amrv7/armv7s/arm64/i386/x86_64等)。常用的查看和合并.a文件的指令lipo。 继续阅读 »
2017-08-05 ruki
This release introduces a number of new feature updates, as detailed in Some new features of xmake v2.1.5. If you want to known more usage, please see online documents。 Source code: Github, Gitee. New features #83: Add add_csnippet and add_cxxsnippet into option for detecting some compiler features. #83: Add user e 继续阅读 »
2017-08-16 ruki
This release fixed some bugs and improve some compilation problem. If you want to known more usage, please see online documents。 Source code: Github, Gitee. Changes Improve add_files to configure the compile option of the given files Inherit links and linkdirs from the dependent targets and options Improve target.a 继续阅读 »
2016-07-21 Roger
Android OpenGL ES 第六章 - 进入三维世界 本系列所有源码地址:https://github.com/Rogero0o/OpenGL_Demo 继续阅读 »
2017-06-27 Renfei Yu
在发布到github pages 时,需要本地预览效果,这时需要安装本的jekyll环境,这里说明安装过程中的主要步骤以及相应的解决办法。 Install CURL apt-get install curl Install RVM 继续阅读 »
2017-08-17 ruki
此版本主要修复一些稳定性问题。 更多使用说明,请阅读:文档手册。 项目源码:Github, Gitee. 改进 改进add_files,支持对files粒度进行编译选项的各种配置,更加灵活。 从依赖的target和option中继承links和linkdirs。 改进target.add_deps接口,添加继承配置,允许手动禁止依赖继承,例如:add_deps("test", {inherit = false}) 移除tbox.pkg二进制依赖,直接集成tbox源码进行编译 Bugs修复 修复目标级联依赖问题 修复target:add和option:add问题 修复在archlinux上的编译和安装问题 修复/ZI的兼容性 继续阅读 »
2016-02-18 Mithrilwoodrat
今天刚刚回到学校,折腾了这么久,终于可以停下来慢慢看书找工作了。 很久没有更新技术相关的内容了,偶尔还是得更新一下的,不过这篇也不怎么能算技术相关。 使用 Github Page + Jekyll 的方式写博客一段时间了,分享下为方便写博客自己造的轮子。 继续阅读 »
2017-10-13 ruki
This release fix some bugs and improve some details. And provide xmake-vscode plugins to integrate vscode editor and xmake. If you want to known more usage, please see online documents。 Source code: Github, Gitee. New features Add add_imports to bulk import modules for the target, option and package script Add xmak 继续阅读 »