generated from ScottKirvan/ScooterGitTemplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add UE5 default project Template to the installer (#30)
* obsidian checkin: 2023-09-09 15:28:05 * obsidian checkin: 2023-09-09 15:30:38 * add optional ue5 template files * make post-build event include out template files * add template files to installer * make the template installation optional
- Loading branch information
1 parent
a0bc235
commit aca4c25
Showing
3 changed files
with
33 additions
and
2 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,7 +1,13 @@ | ||
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
<Fragment> | ||
<StandardDirectory Id="ProgramFiles6432Folder"> | ||
<Directory Id="INSTALLFOLDER" Name="!(bind.Property.ProductName)" /> | ||
<Directory Id="INSTALLFOLDER" Name="!(bind.Property.ProductName)" > | ||
<!-- Example Template folders --> | ||
<Directory Id="UEQLTemplateFolder" Name="ue_quicklaunch_template" > | ||
</Directory> | ||
<Directory Id="UEQLConfigFolder" Name="ue_quicklaunch_template\Config" > | ||
</Directory> | ||
</Directory> | ||
</StandardDirectory> | ||
</Fragment> | ||
</Wix> |
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