在 premake 中包含外部解决方案
Include an external solution in premake
我正在尝试编写顶级 premake4
脚本来构建具有多个外部依赖项的项目。
外部构建包括 Java 和 CMake(据我所知)premake 不理解的内容。该脚本确实生成了一个 MS Visual Studio 2010 解决方案。有没有办法告诉 premake 将项目包含在解决方案中,以便在 Visual Studio 内部构建将重建外部项目(如果它们已过时)?
Premake4 不扩展它是不可能的。但是如果你会使用 Premake5,这很容易做到:https://github.com/premake/premake-core/wiki/external
Premake5 的构建可以在这里获得 http://premake.github.io/ 如果你想尝试它。
我正在尝试编写顶级 premake4
脚本来构建具有多个外部依赖项的项目。
外部构建包括 Java 和 CMake(据我所知)premake 不理解的内容。该脚本确实生成了一个 MS Visual Studio 2010 解决方案。有没有办法告诉 premake 将项目包含在解决方案中,以便在 Visual Studio 内部构建将重建外部项目(如果它们已过时)?
Premake4 不扩展它是不可能的。但是如果你会使用 Premake5,这很容易做到:https://github.com/premake/premake-core/wiki/external
Premake5 的构建可以在这里获得 http://premake.github.io/ 如果你想尝试它。