简体   繁体   中英

Is it possible to generate .sln file from .ninja file?

I was messing around with chromium and was left with a build.ninja file. I want to see if it's possible to generate in some way a .sln file so I could build the project in visual studio to use build acceleration programs on it.

You can use the following command to generate a Visual Studio solution:

gn gen out\YourBuildFolder --ide=vs

You should execute the above command from the src folder. After that command completes, you should see all.sln in the YourBuildFolder folder

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM