-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.proj
17 lines (16 loc) · 1.27 KB
/
build.proj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Project DefaultTargets="lib;tests">
<Target Name="lib">
<MSBuild Projects="tools/gen_casetab/gen_casetab.vcxproj" Properties="SolutionDir=$(MSBuildProjectDirectory)\;Configuration=Release;Platform=x64"/>
<MSBuild Projects="src/utf8.vcxproj" Properties="SolutionDir=..\;Configuration=Debug;Platform=x64"/>
<MSBuild Projects="src/utf8.vcxproj" Properties="SolutionDir=..\;Configuration=Release;Platform=x64"/>
<MSBuild Projects="src/utf8.vcxproj" Properties="SolutionDir=..\;Configuration=Debug;Platform=x86"/>
<MSBuild Projects="src/utf8.vcxproj" Properties="SolutionDir=..\;Configuration=Release;Platform=x86"/>
</Target>
<Target Name="tests">
<MSBuild Projects="tests\tests.vcxproj" Properties="SolutionDir=..\;Configuration=Debug;Platform=x64"/>
<!-- <MSBuild Projects="tests\tests.vcxproj" Properties="SolutionDir=..\;Configuration=Release;Platform=x64"/>
<MSBuild Projects="tests\tests.vcxproj" Properties="SolutionDir=..\;Configuration=Debug;Platform=x86"/>
<MSBuild Projects="tests\tests.vcxproj" Properties="SolutionDir=..\;Configuration=Release;Platform=x86"/> -->
<Exec Command="build\exe\x64\debug\tests.exe build\exe\x64\debug\utf8_tests.xml"/>
</Target>
</Project>