build_linux.sh 456 B

12345678910
  1. #!/bin/bash
  2. # Copyright (c) Contributors to the Open 3D Engine Project.
  3. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0 OR MIT
  6. # Note: on x86/x64 platforms, O3DE requires a minimum of SSE 4.1, so we do request this.
  7. cmake -S temp/src -B temp/build -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DISA_SSE41=ON || exit $?
  8. cmake --build temp/build -j 8 || exit $?