-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathlogobserver.vcxproj
66 lines (66 loc) · 2.7 KB
/
logobserver.vcxproj
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" Condition="'$(AregSdkRoot)'==''">
<Import Project="$(SolutionDir)msvc_setup.props" />
</ImportGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(AregConfigDir)compile.props" Label="LocalAppCompileSettings" />
</ImportGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{6941F2A7-F0C7-4293-8646-AF68A7E35183}</ProjectGuid>
<ProjectName>logobserver</ProjectName>
<RootNamespace>logobserver</RootNamespace>
<Keyword>Win32Proj</Keyword>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
</PropertyGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(AregConfigDir)project.props" Label="LocalAppDataPlatform" />
</ImportGroup>
<ItemDefinitionGroup>
<ClCompile>
<PreprocessorDefinitions>IMPORT_SHARED_SYMBOLS;IMP_LOGGER_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(ConfigShortName)'=='Release'">
<ClCompile>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
</ClCompile>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="logobserver\app\LogObserver.hpp" />
<ClInclude Include="logobserver\app\NELogObserverSettings.hpp" />
<ClInclude Include="logobserver\resources\resource.h" />
<ClInclude Include="logobserver\resources\targetver.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="logobserver\app\private\LogObserver.cpp" />
<ClCompile Include="logobserver\app\private\NELogObserverSettings.cpp" />
<ClCompile Include="logobserver\app\private\posix\LogObserverPosix.cpp" />
<ClCompile Include="logobserver\app\private\win32\LogObserverWin32.cpp" />
</ItemGroup>
<ItemGroup>
<Text Include="logobserver\app\CMakeLists.txt" />
<Text Include="logobserver\app\private\CMakeLists.txt" />
<Text Include="logobserver\CMakeLists.txt" />
</ItemGroup>
<ItemGroup>
<Image Include="logobserver\resources\logobserver.ico" />
<Image Include="logobserver\resources\small.ico" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="logobserver\resources\logobserver.rc" />
</ItemGroup>
<ItemGroup>
<None Include="logobserver\Readme.md" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>