Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我该如何使用premake4?我有一个.lua要编译的文件。
premake4
.lua
我下载了可执行文件premake4,但是当我运行./premake4 myfile它时出现错误。
./premake4 myfile
通常,Premake4 期望执行一个名为premake4.lua. 强烈建议您遵守此约定。
premake4.lua
但是,如果您绝对必须使用不同的文件,您可以调用premake4 --file=<insert file here>. 但同样,建议您只使用标准的 Premake 约定。
premake4 --file=<insert file here>
请注意,这在 Premake 的文档中都有详细说明。甚至命令行帮助也会告诉你如何使用这个--file开关。
--file