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:
parent
fc4e288742
commit
d4da848f4b
1 changed files with 3 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue