-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.bat
More file actions
27 lines (21 loc) · 1.48 KB
/
package.bat
File metadata and controls
27 lines (21 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
REM --------------------------------------------------------------------------------------------------
REM
REM Copyright (c) Contributors to the Open 3D Engine Project.
REM For complete copyright and license terms please see the LICENSE at the root of this distribution.
REM
REM SPDX-License-Identifier: Apache-2.0 OR MIT
REM
REM --------------------------------------------------------------------------------------------------
REM This script is meant to export the project into a standalone shippable project that others can run.
REM However, the project developer is expected to modify it to add steps or change it to their needs.
REM
REM To get more information about the possible tweakable parameters, run
REM (engine folder)\scripts\o3de.bat export-project -es ExportScripts/export_source_built_project.py --script-help
set O3DE_PATH=F:/o3de
set O3DE_PROJECT_PATH=D:/temp
set O3DE_PROJECT_SEEDLIST=%O3DE_PROJECT_PATH%\AssetBundling\SeedLists\Example.seed
set OUTPUT_PATH=%O3DE_PROJECT_PATH%\ProjectPackages
REM change this to release or debug if you want it to make a release or debug package
REM (Only works if the installer you have actually includes release and debug binaries)
set OUTPUT_CONFIGURATION=profile
%O3DE_PATH%\scripts\o3de.bat export-project -es ExportScripts\export_source_built_project.py --project-path %O3DE_PROJECT_PATH% --no-monolithic-build --log-level INFO -assets --config %OUTPUT_CONFIGURATION% --archive-output zip --seedlist %O3DE_PROJECT_SEEDLIST% -out %OUTPUT_PATH%