推荐: blog.csdn.net/aquester https://github.com/eyjian https://www.cnblogs.com/aquester http://blog.chinaunix.net/uid/20682147.html
全部博文(594)
分类: C/C++
2020-07-20 17:24:13
xxd -i 源文件 目标文件 |
# 将 test.lua 编译成 cpp 文件 exec_program( xxd ${CMAKE_CURRENT_SOURCE_DIR} ARGS -i test.lua test.cpp RETURN_VALUE errcode ) if (errcode) return () endif () |
# 将 JSON 的 test.schema 编译成 cpp 文件 exec_program( xxd ${CMAKE_CURRENT_SOURCE_DIR} ARGS -i test.schema test_schema.cpp RETURN_VALUE errcode ) if (errcode) return () endif () |