diff options
author | George Hazan <george.hazan@gmail.com> | 2012-05-21 15:17:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-05-21 15:17:41 +0000 |
commit | 49f4cab93b2f50a8132c6b8c26f1535f4f9ebb63 (patch) | |
tree | e4513a951782643b319f5f286994481030abb450 /plugins/NewAwaySysMod/NewAwaySys.vcxproj | |
parent | c44981c03b71364fc42125594447d142ed9ed442 (diff) |
- added ChangeClientNotify
- CommonLibs finally became common ;)
git-svn-id: http://svn.miranda-ng.org/main/trunk@118 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NewAwaySysMod/NewAwaySys.vcxproj')
-rw-r--r-- | plugins/NewAwaySysMod/NewAwaySys.vcxproj | 41 |
1 files changed, 22 insertions, 19 deletions
diff --git a/plugins/NewAwaySysMod/NewAwaySys.vcxproj b/plugins/NewAwaySysMod/NewAwaySys.vcxproj index 2ab89a2e58..775e96fa8a 100644 --- a/plugins/NewAwaySysMod/NewAwaySys.vcxproj +++ b/plugins/NewAwaySysMod/NewAwaySys.vcxproj @@ -59,12 +59,12 @@ <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
- <PrecompiledHeader>
- </PrecompiledHeader>
+ <PrecompiledHeader>Use</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<DisableSpecificWarnings>4100</DisableSpecificWarnings>
+ <PrecompiledHeaderFile>Common.h</PrecompiledHeaderFile>
</ClCompile>
<Link>
<SuppressStartupBanner>true</SuppressStartupBanner>
@@ -106,14 +106,14 @@ <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<BufferSecurityCheck>false</BufferSecurityCheck>
<FunctionLevelLinking>false</FunctionLevelLinking>
- <PrecompiledHeader>
- </PrecompiledHeader>
+ <PrecompiledHeader>Use</PrecompiledHeader>
<WarningLevel>Level4</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat>
</DebugInformationFormat>
<FavorSizeOrSpeed>Size</FavorSizeOrSpeed>
<DisableSpecificWarnings>4100</DisableSpecificWarnings>
+ <PrecompiledHeaderFile>Common.h</PrecompiledHeaderFile>
</ClCompile>
<Link>
<SuppressStartupBanner>true</SuppressStartupBanner>
@@ -147,31 +147,34 @@ </ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="AwayOpt.cpp" />
- <ClCompile Include="AwaySys.cpp" />
+ <ClCompile Include="AwaySys.cpp">
+ <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
+ <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
+ </ClCompile>
<ClCompile Include="Client.cpp" />
<ClCompile Include="ContactList.cpp" />
- <ClCompile Include=".\CommonLibs\CString.cpp" />
- <ClCompile Include=".\CommonLibs\GroupCheckbox.cpp" />
+ <ClCompile Include="..\CommonLibs\CString.cpp" />
+ <ClCompile Include="..\CommonLibs\GroupCheckbox.cpp" />
<ClCompile Include="MsgEventAdded.cpp" />
<ClCompile Include="MsgTree.cpp" />
<ClCompile Include="Notification.cpp" />
- <ClCompile Include=".\CommonLibs\Options.cpp" />
+ <ClCompile Include="..\CommonLibs\Options.cpp" />
<ClCompile Include="Properties.cpp" />
<ClCompile Include="ReadAwayMsg.cpp" />
<ClCompile Include="Services.cpp" />
<ClCompile Include="SetAwayMsg.cpp" />
- <ClCompile Include=".\CommonLibs\ThemedImageCheckbox.cpp" />
- <ClCompile Include=".\CommonLibs\Themes.cpp" />
+ <ClCompile Include="..\CommonLibs\ThemedImageCheckbox.cpp" />
+ <ClCompile Include="..\CommonLibs\Themes.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="AggressiveOptimize.h" />
<ClInclude Include="Common.h" />
<ClInclude Include="ContactList.h" />
- <ClInclude Include=".\CommonLibs\CString.h" />
- <ClInclude Include=".\CommonLibs\GroupCheckbox.h" />
- <ClInclude Include=".\CommonLibs\m_ContactSettings.h" />
- <ClInclude Include=".\CommonLibs\m_LogService.h" />
- <ClInclude Include=".\CommonLibs\m_NewAwaySys.h" />
+ <ClInclude Include="..\CommonLibs\CString.h" />
+ <ClInclude Include="..\CommonLibs\GroupCheckbox.h" />
+ <ClInclude Include="..\CommonLibs\m_ContactSettings.h" />
+ <ClInclude Include="..\CommonLibs\m_LogService.h" />
+ <ClInclude Include="..\CommonLibs\m_NewAwaySys.h" />
<ClInclude Include="m_popup.h" />
<ClInclude Include="m_popupw.h" />
<ClInclude Include="m_statusplugins.h" />
@@ -179,14 +182,14 @@ <ClInclude Include="m_updater.h" />
<ClInclude Include="m_variables.h" />
<ClInclude Include="MsgTree.h" />
- <ClInclude Include=".\CommonLibs\Options.h" />
+ <ClInclude Include="..\CommonLibs\Options.h" />
<ClInclude Include="Path.h" />
<ClInclude Include="Properties.h" />
<ClInclude Include="resource.h" />
<ClInclude Include="Services.h" />
- <ClInclude Include=".\CommonLibs\ThemedImageCheckbox.h" />
- <ClInclude Include=".\CommonLibs\Themes.h" />
- <ClInclude Include=".\CommonLibs\TMyArray.h" />
+ <ClInclude Include="..\CommonLibs\ThemedImageCheckbox.h" />
+ <ClInclude Include="..\CommonLibs\Themes.h" />
+ <ClInclude Include="..\CommonLibs\TMyArray.h" />
<ClInclude Include="VersionNo.h" />
</ItemGroup>
<ItemGroup>
|