See here:
|
cmdLine += ' -- /nologo /verbosity:minimal /maxcpucount:{} {}'.format(num_jobs, args_str) |
The code assumes that all builds on Windows are done with Visual Studio, and on all other platforms with a build tool which understands the -j option. Needs to be changed to check the build tool instead.
This produces problems like:
=== building: android-vscode-debug
cmake --build . --config Debug -- /nologo /verbosity:minimal /maxcpucount:10
ninja: error: unknown target '/nologo'
[ERROR] Failed to build config 'android-vscode-debug' of project 'X'
See here:
fips/mod/tools/cmake.py
Line 89 in 2b42c34
The code assumes that all builds on Windows are done with Visual Studio, and on all other platforms with a build tool which understands the
-joption. Needs to be changed to check the build tool instead.This produces problems like: