diff options
author | Piotr Piastucki <leech.miranda@gmail.com> | 2014-08-13 13:46:55 +0000 |
---|---|---|
committer | Piotr Piastucki <leech.miranda@gmail.com> | 2014-08-13 13:46:55 +0000 |
commit | 96674592dd3493682a6cccb0b3dcf8ca019fd7a4 (patch) | |
tree | f42a68584d07fc2fd4a70c5866181327471e8f53 /protocols/SkypeClassic/SkypeClassic_10.vcxproj | |
parent | 3cf0b793fe90993ff333ba53104796f0c280118a (diff) |
Made SkypeClassic plugin compatible with Miranda IM again so that plugins for both IMs can be maintained with one codebase.
Compatibility wrapper for Miranda IM is in ng-compat/m_core.h
Changed files back to C and removed C++ code.
Changed Miranda NG project files so that the c files compile as C++ in order to be compatible with Miranda NG headers (/TP).
Added back build scripts and make file to automatically build Miranda IM version using Makefile.
git-svn-id: http://svn.miranda-ng.org/main/trunk@10177 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeClassic/SkypeClassic_10.vcxproj')
-rw-r--r-- | protocols/SkypeClassic/SkypeClassic_10.vcxproj | 39 |
1 files changed, 20 insertions, 19 deletions
diff --git a/protocols/SkypeClassic/SkypeClassic_10.vcxproj b/protocols/SkypeClassic/SkypeClassic_10.vcxproj index ab43a5a327..249f023193 100644 --- a/protocols/SkypeClassic/SkypeClassic_10.vcxproj +++ b/protocols/SkypeClassic/SkypeClassic_10.vcxproj @@ -46,23 +46,6 @@ <ResourceCompile Include="res\Version.rc" />
</ItemGroup>
<ItemGroup>
- <ClCompile Include="src\alogon.cpp" />
- <ClCompile Include="src\contacts.cpp" />
- <ClCompile Include="src\debug.cpp" />
- <ClCompile Include="src\gchat.cpp" />
- <ClCompile Include="src\memlist.cpp" />
- <ClCompile Include="src\msglist.cpp" />
- <ClCompile Include="src\msgq.cpp" />
- <ClCompile Include="src\pthread.cpp" />
- <ClCompile Include="src\skype.cpp" />
- <ClCompile Include="src\skypeapi.cpp" />
- <ClCompile Include="src\skypeopt.cpp" />
- <ClCompile Include="src\skypeprofile.cpp" />
- <ClCompile Include="src\skypesvc.cpp" />
- <ClCompile Include="src\utf8.cpp" />
- <ClCompile Include="src\util.cpp" />
- </ItemGroup>
- <ItemGroup>
<ClInclude Include="src\alogon.h" />
<ClInclude Include="src\contacts.h" />
<ClInclude Include="src\debug.h" />
@@ -82,6 +65,24 @@ <ClInclude Include="src\util.h" />
<ClInclude Include="src\version.h" />
</ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="src\alogon.c" />
+ <ClCompile Include="src\contacts.c" />
+ <ClCompile Include="src\debug.c" />
+ <ClCompile Include="src\gchat.c" />
+ <ClCompile Include="src\memlist.c" />
+ <ClCompile Include="src\msglist.c" />
+ <ClCompile Include="src\msgq.c" />
+ <ClCompile Include="src\pthread.c" />
+ <ClCompile Include="src\skype.c" />
+ <ClCompile Include="src\skypeapi.c" />
+ <ClCompile Include="src\skypeopt.c" />
+ <ClCompile Include="src\skypeprofile.c" />
+ <ClCompile Include="src\skypesvc.c" />
+ <ClCompile Include="src\utf8.c" />
+ <ClCompile Include="src\util.c" />
+ <ClCompile Include="src\voiceservice.c" />
+ </ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{5F9243AE-C6C9-4F42-B670-67A97767A50B}</ProjectGuid>
<ProjectName>SkypeClassic</ProjectName>
@@ -148,7 +149,7 @@ <WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
- <CompileAs>Default</CompileAs>
+ <CompileAs>CompileAsCpp</CompileAs>
<AdditionalIncludeDirectories>..\..\include;..\..\plugins\ExternalAPI;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PrecompiledHeaderFile>skype.h</PrecompiledHeaderFile>
<FunctionLevelLinking>true</FunctionLevelLinking>
@@ -216,7 +217,7 @@ <FunctionLevelLinking>true</FunctionLevelLinking>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
- <CompileAs>Default</CompileAs>
+ <CompileAs>CompileAsCpp</CompileAs>
<AdditionalIncludeDirectories>..\..\include;..\..\plugins\ExternalAPI;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PrecompiledHeaderFile>skype.h</PrecompiledHeaderFile>
<FloatingPointModel>Fast</FloatingPointModel>
|