forked from tier4/AWSIM
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
simplify bundle build process for users
Signed-off-by: Alptuğ Cırıt <[email protected]>
- Loading branch information
mozhoku
committed
Sep 12, 2024
1 parent
61570e9
commit 84ff1c4
Showing
3 changed files
with
56 additions
and
46 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
Assets/AWSIM/Scripts/AssetBundleBuilder/Editor/AWSIMBuildTargets.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
using UnityEditor; | ||
|
||
namespace AWSIM.Scripts.AssetBundleBuilder.Editor | ||
{ | ||
public static class AWSIMBuildTargets | ||
{ | ||
/// <summary> | ||
/// Build targets used for building the bundles for AWSIM Labs. | ||
/// </summary> | ||
public enum SupportedBuildTargets | ||
{ | ||
StandaloneLinux64 = 19, | ||
StandaloneWindows64 = 24 | ||
} | ||
|
||
public static readonly BuildTarget[] TargetValues = | ||
{ | ||
BuildTarget.StandaloneLinux64, | ||
BuildTarget.StandaloneWindows64 | ||
}; | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
Assets/AWSIM/Scripts/AssetBundleBuilder/Editor/AWSIMBuildTargets.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters