Skip to content

Commit

Permalink
props
Browse files Browse the repository at this point in the history
  • Loading branch information
ePi5131 committed Aug 6, 2023
1 parent 33dddfa commit 5259ec1
Show file tree
Hide file tree
Showing 6 changed files with 159 additions and 318 deletions.
9 changes: 5 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,8 @@ FodyWeavers.xsd


# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
.vscode/
test/
pack/
Release_PDB/
/.vscode/
/test/
/pack/
/Intermediate/
/Output/
3 changes: 0 additions & 3 deletions patch.sln
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,11 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x86 = Debug|x86
Release_PDB|x86 = Release_PDB|x86
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{20C4ED31-B17F-445A-90FE-77F8119F831B}.Debug|x86.ActiveCfg = Debug|Win32
{20C4ED31-B17F-445A-90FE-77F8119F831B}.Debug|x86.Build.0 = Debug|Win32
{20C4ED31-B17F-445A-90FE-77F8119F831B}.Release_PDB|x86.ActiveCfg = Release_PDB|Win32
{20C4ED31-B17F-445A-90FE-77F8119F831B}.Release_PDB|x86.Build.0 = Release_PDB|Win32
{20C4ED31-B17F-445A-90FE-77F8119F831B}.Release|x86.ActiveCfg = Release|Win32
{20C4ED31-B17F-445A-90FE-77F8119F831B}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
Expand Down
15 changes: 15 additions & 0 deletions patch/Debug.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros" />
<PropertyGroup />
<ItemDefinitionGroup>
<ClCompile>
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup />
</Project>
31 changes: 31 additions & 0 deletions patch/General.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<OutDir>$(SolutionDir)Output\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)Intermediate\$(Configuration)\</IntDir>
<TargetExt>.aul</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<SDLCheck>true</SDLCheck>
<UseStandardPreprocessor>true</UseStandardPreprocessor>
<LanguageStandard>stdcpplatest</LanguageStandard>
<ConformanceMode>true</ConformanceMode>
<AdditionalIncludeDirectories>aviutl_exedit_sdk;winwrap;json.h;%CUDA_PATH%\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<AdditionalOptions>/source-charset:utf-8 /execution-charset:shift_jis %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<AdditionalLibraryDirectories>%CUDA_PATH%\lib\Win32</AdditionalLibraryDirectories>
<DelayLoadDLLs>OpenCL.DLL</DelayLoadDLLs>
</Link>
<PostBuildEvent>
<Command>xcopy /Y "$(OutDir)$(TargetName).pdb" "$(SolutionDir)Test\"</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup />
</Project>
31 changes: 31 additions & 0 deletions patch/Release.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup>
<PostBuildEvent>
<Command>%(Command)
xcopy /Y "$(TargetPath)" "$(SolutionDir)test\"
xcopy /Y "$(TargetPath)" "$(SolutionDir)pack\"
xcopy /Y "$(SolutionDir)patch.aul.txt" "$(SolutionDir)pack\"
xcopy /Y "$(SolutionDir)credits.md" "$(SolutionDir)pack\"
xcopy /Y "$(SolutionDir)LICENSE" "$(SolutionDir)pack\"
xcopy /Y "$(SolutionDir)COPYING" "$(SolutionDir)pack\"
xcopy /Y "$(SolutionDir)COPYING.LESSER" "$(SolutionDir)pack\"</Command>
</PostBuildEvent>
<ClCompile>
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<IntrinsicFunctions>true</IntrinsicFunctions>
<FunctionLevelLinking>true</FunctionLevelLinking>
</ClCompile>
<Link>
<AdditionalOptions>/PDBALTPATH:%_PDB% %(AdditionalOptions)</AdditionalOptions>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemGroup />
</Project>
Loading

0 comments on commit 5259ec1

Please sign in to comment.