diff options
Diffstat (limited to 'protocols/MSN')
-rw-r--r-- | protocols/MSN/msn_10.vcxproj | 3 | ||||
-rw-r--r-- | protocols/MSN/msn_10.vcxproj.filters | 3 | ||||
-rw-r--r-- | protocols/MSN/src/stdafx.cpp | 18 |
3 files changed, 23 insertions, 1 deletions
diff --git a/protocols/MSN/msn_10.vcxproj b/protocols/MSN/msn_10.vcxproj index 1a00b70269..83bd1e3855 100644 --- a/protocols/MSN/msn_10.vcxproj +++ b/protocols/MSN/msn_10.vcxproj @@ -204,7 +204,7 @@ <ClCompile Include="src\ezxml.c">
<PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
- <ClCompile Include="src\msn.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\msn_auth.cpp" />
@@ -238,6 +238,7 @@ <ClCompile Include="src\msn_threads.cpp" />
<ClCompile Include="src\msn_useropts.cpp" />
<ClCompile Include="src\msn_ws.cpp" />
+ <ClCompile Include="src\msn.cpp" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\msn.rc" />
diff --git a/protocols/MSN/msn_10.vcxproj.filters b/protocols/MSN/msn_10.vcxproj.filters index 41799e2ef5..739be1ce0b 100644 --- a/protocols/MSN/msn_10.vcxproj.filters +++ b/protocols/MSN/msn_10.vcxproj.filters @@ -116,6 +116,9 @@ <ClCompile Include="src\msn_ws.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\msn.rc">
diff --git a/protocols/MSN/src/stdafx.cpp b/protocols/MSN/src/stdafx.cpp new file mode 100644 index 0000000000..6607524f0f --- /dev/null +++ b/protocols/MSN/src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation version 2
+of the License.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "msn_global.h"
\ No newline at end of file |