-
-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dynamic library project for K7Pal.
- Loading branch information
1 parent
5a81ac7
commit 4ef9729
Showing
4 changed files
with
84 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
LIBRARY | ||
|
||
EXPORTS |
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,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
PROJECT: NanaZip Platform Abstraction Layer (K7Pal) | ||
FILE: K7Pal.props | ||
PURPOSE: MSBuild Properties for referencing the K7Pal dynamic library | ||
LICENSE: The MIT License | ||
MAINTAINER: MouriNaruto (Kenji.Mouri@outlook.com) | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<IncludePath>$(MSBuildThisFileDirectory);$(IncludePath)</IncludePath> | ||
</PropertyGroup> | ||
<ItemDefinitionGroup> | ||
<Link> | ||
<AdditionalDependencies>$(OutDir)K7Pal.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
</Link> | ||
</ItemDefinitionGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="$(MSBuildThisFileDirectory)K7Pal.vcxproj"> | ||
<Project>{279F7FA5-7DDC-4635-99B0-3C7F2179DAE0}</Project> | ||
</ProjectReference> | ||
</ItemGroup> | ||
</Project> |
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,41 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>{279F7FA5-7DDC-4635-99B0-3C7F2179DAE0}</ProjectGuid> | ||
<RootNamespace>K7Pal</RootNamespace> | ||
<MileProjectType>DynamicLibrary</MileProjectType> | ||
<WindowsTargetPlatformMinVersion>10.0.19041.0</WindowsTargetPlatformMinVersion> | ||
<MileUniCrtDisableRuntimeDebuggingFeature>true</MileUniCrtDisableRuntimeDebuggingFeature> | ||
<MileProjectEnableVCLTLSupport>true</MileProjectEnableVCLTLSupport> | ||
<MileProjectUseProjectProperties>true</MileProjectUseProjectProperties> | ||
<MileProjectCompanyName>M2-Team</MileProjectCompanyName> | ||
<MileProjectFileDescription>NanaZip Platform Abstraction Layer</MileProjectFileDescription> | ||
<MileProjectInternalName>K7Pal</MileProjectInternalName> | ||
<MileProjectLegalCopyright>© M2-Team and Contributors. All rights reserved.</MileProjectLegalCopyright> | ||
<MileProjectOriginalFilename>K7Pal.dll</MileProjectOriginalFilename> | ||
<MileProjectProductName>NanaZip</MileProjectProductName> | ||
<MileProjectVersion>5.0.$([System.DateTime]::Today.Subtract($([System.DateTime]::Parse('2021-08-31'))).TotalDays).0</MileProjectVersion> | ||
<MileProjectVersionTag>Preview 0</MileProjectVersionTag> | ||
</PropertyGroup> | ||
<Import Sdk="Mile.Project.Configurations" Version="1.0.1426" Project="Mile.Project.Platform.x86.props" /> | ||
<Import Sdk="Mile.Project.Configurations" Version="1.0.1426" Project="Mile.Project.Platform.x64.props" /> | ||
<Import Sdk="Mile.Project.Configurations" Version="1.0.1426" Project="Mile.Project.Platform.ARM64.props" /> | ||
<Import Sdk="Mile.Project.Configurations" Version="1.0.1426" Project="Mile.Project.Cpp.Default.props" /> | ||
<Import Sdk="Mile.Project.Configurations" Version="1.0.1426" Project="Mile.Project.Cpp.props" /> | ||
<Import Project="$(MSBuildThisFileDirectory)K7PalStatic.props" /> | ||
<ItemDefinitionGroup> | ||
<Link> | ||
<ModuleDefinitionFile>K7Pal.def</ModuleDefinitionFile> | ||
</Link> | ||
</ItemDefinitionGroup> | ||
<ItemGroup> | ||
<None Include="K7Pal.def" /> | ||
<None Include="K7Pal.props" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Mile.Windows.UniCrt"> | ||
<Version>1.0.199</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
<Import Sdk="Mile.Project.Configurations" Version="1.0.1426" Project="Mile.Project.Cpp.targets" /> | ||
</Project> |
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