diff options
Diffstat (limited to 'protocols/MRA')
-rw-r--r-- | protocols/MRA/Mra.vcxproj | 3 | ||||
-rw-r--r-- | protocols/MRA/Mra.vcxproj.filters | 3 | ||||
-rw-r--r-- | protocols/MRA/src/stdafx.cpp | 18 |
3 files changed, 23 insertions, 1 deletions
diff --git a/protocols/MRA/Mra.vcxproj b/protocols/MRA/Mra.vcxproj index 52e49b129f..165b5bb5a2 100644 --- a/protocols/MRA/Mra.vcxproj +++ b/protocols/MRA/Mra.vcxproj @@ -184,7 +184,7 @@ </ResourceCompile>
</ItemDefinitionGroup>
<ItemGroup>
- <ClCompile Include="src\Mra.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\MraProto.cpp" />
@@ -206,6 +206,7 @@ <ClCompile Include="src\MraSelectEMail.cpp" />
<ClCompile Include="src\MraSendCommand.cpp" />
<ClCompile Include="src\MraSendQueue.cpp" />
+ <ClCompile Include="src\Mra.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\Mra.h" />
diff --git a/protocols/MRA/Mra.vcxproj.filters b/protocols/MRA/Mra.vcxproj.filters index c4251eca48..f53bbf5b56 100644 --- a/protocols/MRA/Mra.vcxproj.filters +++ b/protocols/MRA/Mra.vcxproj.filters @@ -75,6 +75,9 @@ <ClCompile Include="src\MraProto.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\Mra.h">
diff --git a/protocols/MRA/src/stdafx.cpp b/protocols/MRA/src/stdafx.cpp new file mode 100644 index 0000000000..b9e22e9c92 --- /dev/null +++ b/protocols/MRA/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 "Mra.h"
\ No newline at end of file |