diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-24 18:18:26 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-24 18:18:26 +0000 |
commit | 83fe9d72c03cb6938246d18927e4397fc8a16b9a (patch) | |
tree | 667fa20781c024654d33b3f55cfd8f82416e59ca /plugins/AutoRun | |
parent | 1da17dc86f501c28b850cf563ccc2af3f80c0f49 (diff) |
AutoRun - common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@13095 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AutoRun')
-rw-r--r-- | plugins/AutoRun/autorun.vcxproj | 28 | ||||
-rw-r--r-- | plugins/AutoRun/autorun.vcxproj.filters | 4 | ||||
-rw-r--r-- | plugins/AutoRun/autorun_10.vcxproj | 2 | ||||
-rw-r--r-- | plugins/AutoRun/autorun_12.vcxproj | 2 | ||||
-rw-r--r-- | plugins/AutoRun/src/stdafx.cxx (renamed from plugins/AutoRun/src/stdafx.cpp) | 0 | ||||
-rw-r--r-- | plugins/AutoRun/src/stdafx.h | 2 |
6 files changed, 34 insertions, 4 deletions
diff --git a/plugins/AutoRun/autorun.vcxproj b/plugins/AutoRun/autorun.vcxproj new file mode 100644 index 0000000000..65a1b34547 --- /dev/null +++ b/plugins/AutoRun/autorun.vcxproj @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup Label="ProjectConfigurations">
+ <ProjectConfiguration Include="Debug|Win32">
+ <Configuration>Debug</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Debug|x64">
+ <Configuration>Debug</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|Win32">
+ <Configuration>Release</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|x64">
+ <Configuration>Release</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ </ItemGroup>
+ <PropertyGroup Label="Globals">
+ <ProjectName>AutoRun</ProjectName>
+ <ProjectGuid>{00037ACC-F32D-4B5F-93A8-3CF0E277E377}</ProjectGuid>
+ </PropertyGroup>
+ <ImportGroup Label="PropertySheets">
+ <Import Project="$(ProjectDir)..\..\build\vc.common\common.props" />
+ </ImportGroup>
+</Project>
\ No newline at end of file diff --git a/plugins/AutoRun/autorun.vcxproj.filters b/plugins/AutoRun/autorun.vcxproj.filters new file mode 100644 index 0000000000..de5ad9f66c --- /dev/null +++ b/plugins/AutoRun/autorun.vcxproj.filters @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$(ProjectDir)..\..\build\vc.common\common.filters" />
+</Project>
\ No newline at end of file diff --git a/plugins/AutoRun/autorun_10.vcxproj b/plugins/AutoRun/autorun_10.vcxproj index f8afe2444b..cc8ba38836 100644 --- a/plugins/AutoRun/autorun_10.vcxproj +++ b/plugins/AutoRun/autorun_10.vcxproj @@ -197,7 +197,7 @@ </ItemGroup>
<ItemGroup>
<ClCompile Include="src\main.cpp" />
- <ClCompile Include="src\stdafx.cpp">
+ <ClCompile Include="src\stdafx.cxx">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
</ItemGroup>
diff --git a/plugins/AutoRun/autorun_12.vcxproj b/plugins/AutoRun/autorun_12.vcxproj index 8327a9e0fa..2ceac6a110 100644 --- a/plugins/AutoRun/autorun_12.vcxproj +++ b/plugins/AutoRun/autorun_12.vcxproj @@ -200,7 +200,7 @@ </ItemGroup>
<ItemGroup>
<ClCompile Include="src\main.cpp" />
- <ClCompile Include="src\stdafx.cpp">
+ <ClCompile Include="src\stdafx.cxx">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
</ItemGroup>
diff --git a/plugins/AutoRun/src/stdafx.cpp b/plugins/AutoRun/src/stdafx.cxx index 6fb37564b7..6fb37564b7 100644 --- a/plugins/AutoRun/src/stdafx.cpp +++ b/plugins/AutoRun/src/stdafx.cxx diff --git a/plugins/AutoRun/src/stdafx.h b/plugins/AutoRun/src/stdafx.h index a1ae3abd01..cffea647f6 100644 --- a/plugins/AutoRun/src/stdafx.h +++ b/plugins/AutoRun/src/stdafx.h @@ -1,5 +1,3 @@ -#define _CRT_SECURE_NO_WARNINGS
-
#include <windows.h>
#include <newpluginapi.h>
|