-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdmSpellLearning.ppj
More file actions
44 lines (44 loc) · 1.59 KB
/
dmSpellLearning.ppj
File metadata and controls
44 lines (44 loc) · 1.59 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version='1.0'?>
<PapyrusProject xmlns="PapyrusProject.xsd"
Flags="TESV_Papyrus_Flags.flg"
Game="sse"
Output="Scripts"
Optimize="true"
Release="true"
Final="true"
Anonymize="true"
Package="true"
Zip="true">
<Variables>
<Variable Name="modName" Value="dmSpellLearning"/>
<Variable Name="gamePath" Value="C:\Program Files (x86)\Steam\steamapps\common\Skyrim Special Edition"/>
<Variable Name="deployPath" Value="C:\Users\DanMaklen\AppData\Roaming\Vortex\skyrimse\mods\DevMod"/>
</Variables>
<Imports>
<Import>.\Scripts\Source\</Import>
<Import>@gamePath\Data\Scripts\Source</Import>
<Import>@gamePath\Data\Source\Scripts</Import>
</Imports>
<Folders>
<Folder>.\Scripts\Source\</Folder>
</Folders>
<Packages Output=".">
<Package Name="@modName.bsa" RootDir=".">
<Include NoRecurse="false">**/*.pex</Include>
</Package>
</Packages>
<ZipFiles Output=".">
<ZipFile Name="@modName" RootDir="." Compression="deflate">
<Include>@modName.esp</Include>
<Include>*.bsa</Include>
</ZipFile>
</ZipFiles>
<PreBuildEvent Description="" UseInBuild="true">
<Command>xcopy /Q /Y /D "@gamePath\Data\@modName.esp" .</Command>
</PreBuildEvent>
<PostBuildEvent Description="" UseInBuild="true">
<Command>xcopy /Q /S /Y /D *.pex @deployPath</Command>
<Command>xcopy /Q /S /Y /D *.psc @deployPath</Command>
<Command>xcopy /Q /S /Y /D *.esp @deployPath</Command>
</PostBuildEvent>
</PapyrusProject>