diff options
Diffstat (limited to 'protocols/NewsAggregator')
-rw-r--r-- | protocols/NewsAggregator/NewsAggregator_10.vcxproj | 3 | ||||
-rw-r--r-- | protocols/NewsAggregator/NewsAggregator_10.vcxproj.filters | 3 | ||||
-rw-r--r-- | protocols/NewsAggregator/Src/Stdafx.cpp | 18 |
3 files changed, 23 insertions, 1 deletions
diff --git a/protocols/NewsAggregator/NewsAggregator_10.vcxproj b/protocols/NewsAggregator/NewsAggregator_10.vcxproj index d75af19cd9..78450a3189 100644 --- a/protocols/NewsAggregator/NewsAggregator_10.vcxproj +++ b/protocols/NewsAggregator/NewsAggregator_10.vcxproj @@ -185,10 +185,11 @@ <ClCompile Include="Src\Icons.cpp" />
<ClCompile Include="Src\Menus.cpp" />
<ClCompile Include="Src\Options.cpp" />
- <ClCompile Include="Src\NewsAggregator.cpp">
+ <ClCompile Include="Src\Stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="Src\Services.cpp" />
+ <ClCompile Include="Src\NewsAggregator.cpp" />
<ClCompile Include="Src\Update.cpp" />
<ClCompile Include="Src\Utils.cpp" />
</ItemGroup>
diff --git a/protocols/NewsAggregator/NewsAggregator_10.vcxproj.filters b/protocols/NewsAggregator/NewsAggregator_10.vcxproj.filters index 758967e47d..e02b0ce97e 100644 --- a/protocols/NewsAggregator/NewsAggregator_10.vcxproj.filters +++ b/protocols/NewsAggregator/NewsAggregator_10.vcxproj.filters @@ -55,5 +55,8 @@ <ClCompile Include="Src\NewsAggregator.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="Src\Stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
</Project>
\ No newline at end of file diff --git a/protocols/NewsAggregator/Src/Stdafx.cpp b/protocols/NewsAggregator/Src/Stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/protocols/NewsAggregator/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 "common.h"
\ No newline at end of file |