Does anyone know of a way to pass the -quiet
flag into xcodebuild build
via CMake?
Thanks!
Does anyone know of a way to pass the -quiet
flag into xcodebuild build
via CMake?
Thanks!
cmake --build BuildDir -- -quiet
https://cmake.org/cmake/help/latest/manual/cmake.1.html#build-a-project
That was exactly what I needed. Thank you.