diff options
Diffstat (limited to 'plugins/Import')
| -rw-r--r-- | plugins/Import/import_10.vcxproj | 3 | ||||
| -rw-r--r-- | plugins/Import/import_10.vcxproj.filters | 3 | ||||
| -rw-r--r-- | plugins/Import/src/stdafx.cpp | 18 | 
3 files changed, 23 insertions, 1 deletions
| diff --git a/plugins/Import/import_10.vcxproj b/plugins/Import/import_10.vcxproj index cac38e6e71..c544c951f4 100644 --- a/plugins/Import/import_10.vcxproj +++ b/plugins/Import/import_10.vcxproj @@ -198,11 +198,12 @@        <PrecompiledHeader>NotUsing</PrecompiledHeader>
      </ClCompile>
      <ClCompile Include="src\import.cpp" />
 -    <ClCompile Include="src\main.cpp">
 +    <ClCompile Include="src\stdafx.cpp">
        <PrecompiledHeader>Create</PrecompiledHeader>
      </ClCompile>
      <ClCompile Include="src\miranda.cpp" />
      <ClCompile Include="src\progress.cpp" />
 +    <ClCompile Include="src\main.cpp" />
      <ClCompile Include="src\utils.cpp" />
      <ClCompile Include="src\wizard.cpp" />
    </ItemGroup>
 diff --git a/plugins/Import/import_10.vcxproj.filters b/plugins/Import/import_10.vcxproj.filters index f7ed0a68e6..3495d1e132 100644 --- a/plugins/Import/import_10.vcxproj.filters +++ b/plugins/Import/import_10.vcxproj.filters @@ -39,6 +39,9 @@      <ClCompile Include="src\import.cpp">
        <Filter>Source Files</Filter>
      </ClCompile>
 +    <ClCompile Include="src\stdafx.cpp">
 +      <Filter>Source Files</Filter>
 +    </ClCompile>
    </ItemGroup>
    <ItemGroup>
      <ClInclude Include="src\import.h">
 diff --git a/plugins/Import/src/stdafx.cpp b/plugins/Import/src/stdafx.cpp new file mode 100644 index 0000000000..f20859bbbf --- /dev/null +++ b/plugins/Import/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 "import.h"
\ No newline at end of file | 
