Hello
I have downloaded skia from git and ran the python2 tools/git-sync-deps so now it was time to generate the build files
There is an issue with building on windows in that the clang_win variable cannot be set using --args
To generate some build files i can run thos command:
bin\gn gen out\Debug --args="is_official_build=false"
When is try to run bin\gn gen out\Debug --args='is_official_build=true' is get the error message "Strings are delimited by " characters, not apostrophes.". Because of this i cannot see how can i set the clang_win variable
I have tried bin\gn gen out\Debug --args="is_official_build=false clang_win=""C:\Program Files\LLVM""" and i get the following error "Need exactly one build directory to generate.". Any combinations of ' and " have resulted in one of these message.
I suppose i could manually insert clang_win in
args.gn however this is not the standard way as far as i know and the toolchain.ninja file is set to visual studio
Any suggestions are welcomed
Than you