我使用 premake4.exe 实用程序为不同平台生成项目文件。问题是我找不到如何在 lua-config 文件中指定自定义应用程序入口点。
我应该使用哪个选项?例如,在 Visual Studio 中,我可以去
Project Properties->Linker->Advanced
Entry Point = name_of_my_entry_point_function
在 premake4 手册(http://industriousone.com/flags)中,我发现只有WinMain()标志将 WinMain 函数确定为应用程序入口点,但我需要自定义入口点,例如wmain()。