Removes unity=true since its the default

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-10-22 15:31:46 -07:00
parent c345733057
commit ec78c1c003
8 changed files with 46 additions and 47 deletions
@@ -21,8 +21,7 @@ namespace O3DE::ProjectManager
return AZ::Success(QStringList{ ProjectCMakeCommand,
"-B", targetBuildPath,
"-S", m_projectInfo.m_path,
QString("-DLY_3RDPARTY_PATH=").append(thirdPartyPath),
"-DLY_UNITY_BUILD=ON" } );
QString("-DLY_3RDPARTY_PATH=").append(thirdPartyPath) } );
}
AZ::Outcome<QStringList, QString> ProjectBuilderWorker::ConstructCmakeBuildCommandArguments() const