1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2026-01-24 10:30:53 +00:00

Don't set /MP when using ccache

This *should* make no difference as we already do things that mean ccache only gets told about one TU at once (e.g. using Ninja, or enabling UseMultiToolTask), but at the minimum, it's misleading to have this enabled when we know we're not using it.
This commit is contained in:
AnyOldName3 2026-01-02 19:02:42 +00:00
parent fc4e288742
commit d4da848f4b

View file

@ -730,7 +730,9 @@ echo
cd $DEPS_INSTALL/..
echo
echo "Setting up OpenMW build..."
add_cmake_opts -DOPENMW_MP_BUILD=on
if [[ -z "$USE_CCACHE" ]]; then
add_cmake_opts -DOPENMW_MP_BUILD=on
fi
add_cmake_opts -DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}"
add_cmake_opts -DOPENMW_USE_SYSTEM_SQLITE3=OFF
add_cmake_opts -DOPENMW_USE_SYSTEM_YAML_CPP=OFF