Reputation: 37
Im trying to compile Aseprite from github's source code. When I type in console:
gn gen out/Release --args="is_official_build=true skia_use_system_expat=false skia_use_system_libjpeg_turbo=false skia_use_system_libpng=false skia_use_system_libwebp=false skia_use_system_zlib=false target_cpu=""x64"" cc=""clang"" cxx=""clang++"" clang_win=""c:\deps\llvm"" win_vc=""G:\Visual Studio\VC"```
I get an error:
ERROR Need exactly one build directory to generate
Upvotes: 0
Views: 1072
Reputation: 26
You are missing two quotes at the end "" :
...Community\VC"""
SEE: https://github.com/aseprite/aseprite/blob/master/INSTALL.md
Upvotes: 1