티스토리 뷰
Target을 직접 만들지 않고 import하여 사용하는 MSBuild C++ 샘플 #2
IDE에서 기본적으로 사용하는 Build/Rebuild/Clean Target을 사용한다.
<Project DefaultTargets="Build" ToolsVersion="4.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>
<ShowAllFiles>false</ShowAllFiles>
</PropertyGroup>
<Import Project="$(VCTargetsPath)/Microsoft.Cpp.props" />
<ItemGroup>
<ClCompile Include="main.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="main.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Targets" />
</Project>
'프로그래밍' 카테고리의 다른 글
MSBuild VCTargetPath, MSBuildToolsPath 프로퍼티 (0) | 2017.03.28 |
---|---|
MSBuild 파일에서 C#을 인라인 스크립트로 사용하기 (0) | 2017.03.28 |
MSBuild C++ 예제 1/2 (0) | 2017.03.28 |
MSBuild 시작하기 (0) | 2017.03.28 |
C# 프로세스별 CPU 사용률 구하기 (0) | 2017.03.28 |
- Total
- Today
- Yesterday