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_12.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_12.vcxproj')
-rw-r--r-- | protocols/SkypeClassic/SkypeClassic_12.vcxproj | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/protocols/SkypeClassic/SkypeClassic_12.vcxproj b/protocols/SkypeClassic/SkypeClassic_12.vcxproj index b7868c7487..99e8d4f513 100644 --- a/protocols/SkypeClassic/SkypeClassic_12.vcxproj +++ b/protocols/SkypeClassic/SkypeClassic_12.vcxproj @@ -46,21 +46,22 @@ <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" />
+ <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>
<ItemGroup>
<ClInclude Include="src\alogon.h" />
@@ -146,6 +147,7 @@ <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<WarningLevel>Level3</WarningLevel>
+ <CompileAs>CompileAsCpp</CompileAs>
<AdditionalIncludeDirectories>..\..\include;..\..\plugins\ExternalAPI;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<FunctionLevelLinking>true</FunctionLevelLinking>
<FloatingPointModel>Fast</FloatingPointModel>
|