diff options
| author | Alee <Alee14498@gmail.com> | 2019-01-29 09:22:02 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-29 09:22:02 -0500 |
| commit | 357c6c41eacb919a0749c55eef38fc664bb7a5ad (patch) | |
| tree | 56535371120b6c178c7a3f4a91f761347589892c /xeon.vcxproj | |
| parent | da7e45bdfdf5d09c6e9ca12049a2af15dfe9877e (diff) | |
| parent | 0a2682dde21a80a41229dcd6f66efe31c5847ec1 (diff) | |
| download | Project-Xeon-357c6c41eacb919a0749c55eef38fc664bb7a5ad.tar.gz Project-Xeon-357c6c41eacb919a0749c55eef38fc664bb7a5ad.tar.bz2 Project-Xeon-357c6c41eacb919a0749c55eef38fc664bb7a5ad.zip | |
Merge pull request #2 from AdrUlb/master
Added MSBuild support
Diffstat (limited to 'xeon.vcxproj')
| -rw-r--r-- | xeon.vcxproj | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/xeon.vcxproj b/xeon.vcxproj new file mode 100644 index 0000000..eae4ea7 --- /dev/null +++ b/xeon.vcxproj @@ -0,0 +1,22 @@ +<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup> + <ProjectConfiguration Include="Debug|Win32"> + <Configuration>Debug</Configuration> + <Platform>Win32</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|Win32"> + <Configuration>Release</Configuration> + <Platform>Win32</Platform> + </ProjectConfiguration> + </ItemGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.default.props" /> + <PropertyGroup> + <ConfigurationType>Application</ConfigurationType> + <PlatformToolset>$(toolVersion)</PlatformToolset> + </PropertyGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> + <ItemGroup> + <ClCompile Include="main.cpp" /> + </ItemGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Targets" /> +</Project>
\ No newline at end of file |
