英文:
How to build setup executable for chromium from sources
问题
如何构建 Chromium 浏览器的 setup.exe 或 setup.dmg(适用于 Mac)?
我尝试阅读构建文档,但只提供了关于如何构建 Chromium 并运行它的信息,没有提供构建 setup.exe 的信息。
英文:
How to build setup.exe or setup.dmg (for mac) of chromium browser?
I tried to read the build documentation but there is only information about how to build chromium and run it but not to build setup.exe
答案1
得分: 2
设置是一个可执行文件,您可以通过运行以下命令创建该文件:
ninja -C folder_to_output setup
英文:
Setup is an executable file and you can create that file by running the following command:
ninja -C folder_to_output setup
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论