forked from cesanta/fossa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfossa.proj
31 lines (31 loc) · 1.17 KB
/
fossa.proj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project DefaultTargets="Build" 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>
<ItemDefinitionGroup>
<ClCompile>
<PreprocessorDefinitions>NS_ENABLE_THREADS;NS_ENABLE_MQTT_BROKER;NS_ENABLE_DNS_SERVER;NS_INTERNAL=;DNS_MODULE_LINES;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.default.props" />
<PropertyGroup>
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v120</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ItemGroup>
<ClCompile Include="fossa.c" />
<ClCompile Include="test\unit_test.c" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="fossa.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Targets" />
</Project>