-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathskyrimse.ppj
More file actions
51 lines (50 loc) · 2.42 KB
/
skyrimse.ppj
File metadata and controls
51 lines (50 loc) · 2.42 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
45
46
47
48
49
50
51
<?xml version='1.0'?>
<PapyrusProject xmlns="PapyrusProject.xsd"
Flags="Dependencies/Stubs/BaseGame/TESV_Papyrus_Flags.flg"
Game="sse"
Anonymize="true"
Output="Scripts"
Optimize="false"
Release="false"
Zip="true"
Package="false"
Final="false">
<Variables>
<!-- Set the name of your mod: -->
<Variable Name="ModName" Value="FSMP MCM" />
</Variables>
<Imports>
<Import>./Source/Scripts</Import>
<Import>./Dependencies/SkyUI-Community/source/scripts</Import>
<Import>./Dependencies/Stubs/BaseGame</Import>
<Import>./Dependencies/Stubs/SKSE</Import>
<Import>./Dependencies/Stubs/JContainers</Import>
<Import>./Dependencies/Stubs/PapyrusUtil</Import>
<Import>./Dependencies/Stubs/ConsoleUtil</Import>
</Imports>
<Folders>
<!-- Relative path to folder containing .psc Papyrus source code files for this project -->
<Folder>./Source/Scripts</Folder>
</Folders>
<!-- Distributable ZIP for Mod Managers (MO2, Vortex) -->
<ZipFiles Output="Build">
<ZipFile Name="@ModName" RootDir="." Compression="deflate">
<Include>FSMPM - The FSMP MCM.esp</Include>
<Match In="Scripts">*.pex</Match>
<Match In="Source\Scripts">*.psc</Match>
<Match In="SKSE\Plugins\hdtSkinnedMeshConfigs">configs.xml</Match>
<Match In="SKSE\Plugins\hdtSkinnedMeshConfigs\configsPresets">*.xml</Match>
</ZipFile>
</ZipFiles>
<!-- Machine-specific deployment events. Uncomment and adjust paths if needed. -->
<!--
<PostBuildEvent Description="Deploy to local dev instances" UseInBuild="true">
<Command>xcopy "Scripts" "C:\Games\Nolvus\Instances\Nolvus Natural Lighting\MODS\mods\FSMPM - The FSMP MCM Dev\Scripts\" /E/Y</Command>
<Command>xcopy "SKSE" "C:\Games\Nolvus\Instances\Nolvus Natural Lighting\MODS\mods\FSMPM - The FSMP MCM Dev\SKSE\" /E/Y</Command>
<Command>xcopy "Source" "C:\Games\Nolvus\Instances\Nolvus Natural Lighting\MODS\mods\FSMPM - The FSMP MCM Dev\Source\" /E/Y</Command>
<Command>xcopy "Scripts" "C:\Games\Faster HDT-SMP\FSMPM - The FSMP MCM\Scripts\" /E/Y</Command>
<Command>xcopy "SKSE" "C:\Games\Faster HDT-SMP\FSMPM - The FSMP MCM\SKSE\" /E/Y</Command>
<Command>xcopy "Source" "C:\Games\Faster HDT-SMP\FSMPM - The FSMP MCM\Source\" /E/Y</Command>
</PostBuildEvent>
-->
</PapyrusProject>