-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
35 changed files
with
537 additions
and
752 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,45 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = crlf | ||
|
||
[*.md] | ||
insert_final_newline = true | ||
|
||
[*.{c,c++,cc,cpp,cxx,h,h++,hh,hpp,hxx,idl,inl,ipp,tlh,tli}] | ||
indent_style = space | ||
indent_size = 4 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
vc_generate_documentation_comments = doxygen_slash_star | ||
|
||
[*.{cs,csx,vb,vbx}] | ||
indent_style = space | ||
indent_size = 4 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.{js,json,xml,toml,xaml}] | ||
indent_style = space | ||
indent_size = 2 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.rc] | ||
charset = utf-16le | ||
|
||
[Mile.Project.Properties.Template.h] | ||
charset = utf-16le | ||
|
||
[Mile.Project.Properties.h] | ||
charset = utf-16le | ||
|
||
[*.bat] | ||
charset = utf-8 | ||
insert_final_newline = true | ||
|
||
[*.sh] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true |
This file was deleted.
Oops, something went wrong.
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
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,3 +1,6 @@ | ||
[submodule "veil"] | ||
path = veil | ||
path = Veil | ||
url = https://github.com/MiroKaku/Veil.git | ||
[submodule "Mile.Project.Windows"] | ||
path = Mile.Project.Windows | ||
url = https://github.com/ProjectMile/Mile.Project.Windows.git |
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,16 @@ | ||
@setlocal | ||
@echo off | ||
|
||
rem Change to the current folder. | ||
cd "%~dp0" | ||
|
||
rem Remove the output folder for a fresh compile. | ||
rd /s /q Output | ||
|
||
rem Initialize Visual Studio environment | ||
call "%~dp0Mile.Project.Windows\InitializeVisualStudioEnvironment.cmd" | ||
|
||
rem Build all targets | ||
MSBuild -binaryLogger:Output\BuildAllTargets.binlog -m BuildAllTargets.proj | ||
|
||
@endlocal |
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,71 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project | ||
DefaultTargets="Restore;Build" | ||
xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<SolutionPath>$(MSBuildThisFileDirectory)*.sln</SolutionPath> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="$(SolutionPath)"> | ||
<AdditionalProperties>Configuration=Debug;Platform=x86</AdditionalProperties> | ||
</ProjectReference> | ||
<ProjectReference Include="$(SolutionPath)"> | ||
<AdditionalProperties>Configuration=Release;Platform=x86</AdditionalProperties> | ||
</ProjectReference> | ||
<ProjectReference Include="$(SolutionPath)"> | ||
<AdditionalProperties>Configuration=Debug;Platform=x64</AdditionalProperties> | ||
</ProjectReference> | ||
<ProjectReference Include="$(SolutionPath)"> | ||
<AdditionalProperties>Configuration=Release;Platform=x64</AdditionalProperties> | ||
</ProjectReference> | ||
<ProjectReference Include="$(SolutionPath)"> | ||
<AdditionalProperties>Configuration=Debug;Platform=ARM64</AdditionalProperties> | ||
</ProjectReference> | ||
<ProjectReference Include="$(SolutionPath)"> | ||
<AdditionalProperties>Configuration=Release;Platform=ARM64</AdditionalProperties> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<!-- <PackagingProjectReference Include="$(MSBuildThisFileDirectory)Mile.Project.Windows\Mile.Project.NuGetPackaging.proj"> | ||
<AdditionalProperties>NuspecFile=$(MSBuildThisFileDirectory)SampleProject\SampleProject.nuspec</AdditionalProperties> | ||
</PackagingProjectReference> --> | ||
</ItemGroup> | ||
<Target Name="Restore" > | ||
<MSBuild | ||
Projects="@(ProjectReference)" | ||
Targets="Restore" | ||
StopOnFirstFailure="True" | ||
Properties="PreferredToolArchitecture=x64" /> | ||
<MSBuild | ||
Projects="@(PackagingProjectReference)" | ||
Targets="Restore" | ||
StopOnFirstFailure="True" | ||
Properties="PreferredToolArchitecture=x64" /> | ||
</Target> | ||
<Target Name="Build" > | ||
<MSBuild | ||
Projects="@(ProjectReference)" | ||
Targets="Build" | ||
BuildInParallel="True" | ||
StopOnFirstFailure="True" | ||
Properties="PreferredToolArchitecture=x64" /> | ||
<MSBuild | ||
Projects="@(PackagingProjectReference)" | ||
Targets="Build" | ||
StopOnFirstFailure="True" | ||
Properties="PreferredToolArchitecture=x64" /> | ||
</Target> | ||
<Target Name="Rebuild" > | ||
<MSBuild | ||
Projects="@(ProjectReference)" | ||
Targets="Rebuild" | ||
BuildInParallel="True" | ||
StopOnFirstFailure="True" | ||
Properties="PreferredToolArchitecture=x64" /> | ||
<MSBuild | ||
Projects="@(PackagingProjectReference)" | ||
Targets="Rebuild" | ||
StopOnFirstFailure="True" | ||
Properties="PreferredToolArchitecture=x64" /> | ||
</Target> | ||
</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,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project> | ||
<Import Project="$(MSBuildThisFileDirectory)Mile.Project.Windows\Mile.Project.Build.props" /> | ||
<PropertyGroup> | ||
<ForceImportBeforeCppProps>$(MSBuildThisFileDirectory)libwsk.Project.props</ForceImportBeforeCppProps> | ||
</PropertyGroup> | ||
</Project> |
Submodule Mile.Project.Windows
added at
910550
File renamed without changes.
File renamed without changes.
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,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemDefinitionGroup> | ||
<ClCompile> | ||
<AdditionalIncludeDirectories>$(MSBuildThisFileDirectory);$(MSBuildProjectDirectory);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
</ClCompile> | ||
</ItemDefinitionGroup> | ||
</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,70 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.8.34511.84 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ReadMe", "ReadMe", "{5093B2BD-739E-440B-A515-3286021E5390}" | ||
ProjectSection(SolutionItems) = preProject | ||
LICENSE = LICENSE | ||
README.md = README.md | ||
README.zh-CN.md = README.zh-CN.md | ||
EndProjectSection | ||
EndProject | ||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libwsk", "libwsk\libwsk.vcxproj", "{66495811-336E-4693-B2EA-3EECBC17545E}" | ||
EndProject | ||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libwsk.test", "libwsk.test\libwsk.test.vcxproj", "{3E5181D1-702F-40D0-A8EB-E373C0A380E6}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|ARM64 = Debug|ARM64 | ||
Debug|x64 = Debug|x64 | ||
Debug|x86 = Debug|x86 | ||
Release|ARM64 = Release|ARM64 | ||
Release|x64 = Release|x64 | ||
Release|x86 = Release|x86 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Debug|ARM64.ActiveCfg = Debug|ARM64 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Debug|ARM64.Build.0 = Debug|ARM64 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Debug|ARM64.Deploy.0 = Debug|ARM64 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Debug|x64.ActiveCfg = Debug|x64 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Debug|x64.Build.0 = Debug|x64 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Debug|x64.Deploy.0 = Debug|x64 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Debug|x86.ActiveCfg = Debug|Win32 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Debug|x86.Build.0 = Debug|Win32 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Debug|x86.Deploy.0 = Debug|Win32 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Release|ARM64.ActiveCfg = Release|ARM64 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Release|ARM64.Build.0 = Release|ARM64 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Release|ARM64.Deploy.0 = Release|ARM64 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Release|x64.ActiveCfg = Release|x64 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Release|x64.Build.0 = Release|x64 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Release|x64.Deploy.0 = Release|x64 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Release|x86.ActiveCfg = Release|Win32 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Release|x86.Build.0 = Release|Win32 | ||
{66495811-336E-4693-B2EA-3EECBC17545E}.Release|x86.Deploy.0 = Release|Win32 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Debug|ARM64.ActiveCfg = Debug|ARM64 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Debug|ARM64.Build.0 = Debug|ARM64 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Debug|ARM64.Deploy.0 = Debug|ARM64 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Debug|x64.ActiveCfg = Debug|x64 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Debug|x64.Build.0 = Debug|x64 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Debug|x64.Deploy.0 = Debug|x64 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Debug|x86.ActiveCfg = Debug|Win32 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Debug|x86.Build.0 = Debug|Win32 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Debug|x86.Deploy.0 = Debug|Win32 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Release|ARM64.ActiveCfg = Release|ARM64 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Release|ARM64.Build.0 = Release|ARM64 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Release|ARM64.Deploy.0 = Release|ARM64 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Release|x64.ActiveCfg = Release|x64 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Release|x64.Build.0 = Release|x64 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Release|x64.Deploy.0 = Release|x64 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Release|x86.ActiveCfg = Release|Win32 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Release|x86.Build.0 = Release|Win32 | ||
{3E5181D1-702F-40D0-A8EB-E373C0A380E6}.Release|x86.Deploy.0 = Release|Win32 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {66455BED-BAB4-464D-B228-93A80B777B96} | ||
EndGlobalSection | ||
EndGlobal |
Oops, something went wrong.