Skip to content

Commit 0a88c0d

Browse files
committed
Add VS2013 build files for event triggered average
1 parent 1ecb130 commit 0a88c0d

3 files changed

Lines changed: 191 additions & 0 deletions

File tree

Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Debug|x64">
9+
<Configuration>Debug</Configuration>
10+
<Platform>x64</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Release|Win32">
13+
<Configuration>Release</Configuration>
14+
<Platform>Win32</Platform>
15+
</ProjectConfiguration>
16+
<ProjectConfiguration Include="Release|x64">
17+
<Configuration>Release</Configuration>
18+
<Platform>x64</Platform>
19+
</ProjectConfiguration>
20+
</ItemGroup>
21+
<PropertyGroup Label="Globals">
22+
<ProjectGuid>{BEE7D50B-D914-43EC-975C-3FE2FC36E40D}</ProjectGuid>
23+
<RootNamespace>EvntTrigAvg</RootNamespace>
24+
</PropertyGroup>
25+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
26+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
27+
<ConfigurationType>DynamicLibrary</ConfigurationType>
28+
<UseDebugLibraries>true</UseDebugLibraries>
29+
<PlatformToolset>v120</PlatformToolset>
30+
<CharacterSet>MultiByte</CharacterSet>
31+
</PropertyGroup>
32+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
33+
<ConfigurationType>DynamicLibrary</ConfigurationType>
34+
<UseDebugLibraries>true</UseDebugLibraries>
35+
<PlatformToolset>v120</PlatformToolset>
36+
<CharacterSet>MultiByte</CharacterSet>
37+
</PropertyGroup>
38+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
39+
<ConfigurationType>DynamicLibrary</ConfigurationType>
40+
<UseDebugLibraries>false</UseDebugLibraries>
41+
<PlatformToolset>v120</PlatformToolset>
42+
<WholeProgramOptimization>true</WholeProgramOptimization>
43+
<CharacterSet>MultiByte</CharacterSet>
44+
</PropertyGroup>
45+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
46+
<ConfigurationType>DynamicLibrary</ConfigurationType>
47+
<UseDebugLibraries>false</UseDebugLibraries>
48+
<PlatformToolset>v120</PlatformToolset>
49+
<WholeProgramOptimization>true</WholeProgramOptimization>
50+
<CharacterSet>MultiByte</CharacterSet>
51+
</PropertyGroup>
52+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
53+
<ImportGroup Label="ExtensionSettings">
54+
</ImportGroup>
55+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
56+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
57+
<Import Project="..\Plugin_Debug32.props" />
58+
</ImportGroup>
59+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
60+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
61+
<Import Project="..\Plugin_Debug64.props" />
62+
</ImportGroup>
63+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
64+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
65+
<Import Project="..\Plugin_Release32.props" />
66+
</ImportGroup>
67+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
68+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
69+
<Import Project="..\Plugin_Release64.props" />
70+
</ImportGroup>
71+
<PropertyGroup Label="UserMacros" />
72+
<PropertyGroup />
73+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
74+
<ClCompile>
75+
<WarningLevel>Level3</WarningLevel>
76+
<Optimization>Disabled</Optimization>
77+
<SDLCheck>false</SDLCheck>
78+
</ClCompile>
79+
<Link>
80+
<GenerateDebugInformation>true</GenerateDebugInformation>
81+
</Link>
82+
</ItemDefinitionGroup>
83+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
84+
<ClCompile>
85+
<WarningLevel>Level3</WarningLevel>
86+
<Optimization>Disabled</Optimization>
87+
<SDLCheck>false</SDLCheck>
88+
</ClCompile>
89+
<Link>
90+
<GenerateDebugInformation>true</GenerateDebugInformation>
91+
</Link>
92+
</ItemDefinitionGroup>
93+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
94+
<ClCompile>
95+
<WarningLevel>Level3</WarningLevel>
96+
<Optimization>MaxSpeed</Optimization>
97+
<FunctionLevelLinking>true</FunctionLevelLinking>
98+
<IntrinsicFunctions>true</IntrinsicFunctions>
99+
<SDLCheck>false</SDLCheck>
100+
</ClCompile>
101+
<Link>
102+
<GenerateDebugInformation>true</GenerateDebugInformation>
103+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
104+
<OptimizeReferences>true</OptimizeReferences>
105+
</Link>
106+
</ItemDefinitionGroup>
107+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
108+
<ClCompile>
109+
<WarningLevel>Level3</WarningLevel>
110+
<Optimization>MaxSpeed</Optimization>
111+
<FunctionLevelLinking>true</FunctionLevelLinking>
112+
<IntrinsicFunctions>true</IntrinsicFunctions>
113+
<SDLCheck>false</SDLCheck>
114+
</ClCompile>
115+
<Link>
116+
<GenerateDebugInformation>true</GenerateDebugInformation>
117+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
118+
<OptimizeReferences>true</OptimizeReferences>
119+
</Link>
120+
</ItemDefinitionGroup>
121+
<ItemGroup>
122+
<ClCompile Include="..\..\..\..\Source\Plugins\EvntTrigAvg\EvntTrigAvg.cpp" />
123+
<ClCompile Include="..\..\..\..\Source\Plugins\EvntTrigAvg\EvntTrigAvgCanvas.cpp" />
124+
<ClCompile Include="..\..\..\..\Source\Plugins\EvntTrigAvg\EvntTrigAvgEditor.cpp" />
125+
<ClCompile Include="..\..\..\..\Source\Plugins\EvntTrigAvg\OpenEphysLib.cpp" />
126+
</ItemGroup>
127+
<ItemGroup>
128+
<ClInclude Include="..\..\..\..\Source\Plugins\EvntTrigAvg\EvntTrigAvg.h" />
129+
<ClInclude Include="..\..\..\..\Source\Plugins\EvntTrigAvg\EvntTrigAvgCanvas.h" />
130+
<ClInclude Include="..\..\..\..\Source\Plugins\EvntTrigAvg\EvntTrigAvgEditor.h" />
131+
</ItemGroup>
132+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
133+
<ImportGroup Label="ExtensionTargets">
134+
</ImportGroup>
135+
</Project>
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Filter Include="Source Files">
5+
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
6+
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
7+
</Filter>
8+
<Filter Include="Header Files">
9+
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
10+
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
11+
</Filter>
12+
<Filter Include="Resource Files">
13+
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
14+
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
15+
</Filter>
16+
</ItemGroup>
17+
<ItemGroup>
18+
<ClCompile Include="..\..\..\..\Source\Plugins\EvntTrigAvg\EvntTrigAvg.cpp">
19+
<Filter>Source Files</Filter>
20+
</ClCompile>
21+
<ClCompile Include="..\..\..\..\Source\Plugins\EvntTrigAvg\EvntTrigAvgCanvas.cpp">
22+
<Filter>Source Files</Filter>
23+
</ClCompile>
24+
<ClCompile Include="..\..\..\..\Source\Plugins\EvntTrigAvg\EvntTrigAvgEditor.cpp">
25+
<Filter>Source Files</Filter>
26+
</ClCompile>
27+
<ClCompile Include="..\..\..\..\Source\Plugins\EvntTrigAvg\OpenEphysLib.cpp">
28+
<Filter>Source Files</Filter>
29+
</ClCompile>
30+
</ItemGroup>
31+
<ItemGroup>
32+
<ClInclude Include="..\..\..\..\Source\Plugins\EvntTrigAvg\EvntTrigAvg.h">
33+
<Filter>Source Files</Filter>
34+
</ClInclude>
35+
<ClInclude Include="..\..\..\..\Source\Plugins\EvntTrigAvg\EvntTrigAvgCanvas.h">
36+
<Filter>Source Files</Filter>
37+
</ClInclude>
38+
<ClInclude Include="..\..\..\..\Source\Plugins\EvntTrigAvg\EvntTrigAvgEditor.h">
39+
<Filter>Source Files</Filter>
40+
</ClInclude>
41+
</ItemGroup>
42+
</Project>

Builds/VisualStudio2013/Plugins/Plugins.sln

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
5757
EndProject
5858
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LFP_Viewer_Alpha", "LFP_Viewer_Alpha\LFP_Viewer_Alpha.vcxproj", "{13A9AA65-5A8C-4DDF-B005-4477D4154E76}"
5959
EndProject
60+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EvntTrigAvg", "EvntTrigAvg\EvntTrigAvg.vcxproj", "{BEE7D50B-D914-43EC-975C-3FE2FC36E40D}"
61+
EndProject
6062
Global
6163
GlobalSection(SolutionConfigurationPlatforms) = preSolution
6264
Debug|Mixed Platforms = Debug|Mixed Platforms
@@ -319,6 +321,18 @@ Global
319321
{13A9AA65-5A8C-4DDF-B005-4477D4154E76}.Release|Win32.Build.0 = Release|Win32
320322
{13A9AA65-5A8C-4DDF-B005-4477D4154E76}.Release|x64.ActiveCfg = Release|x64
321323
{13A9AA65-5A8C-4DDF-B005-4477D4154E76}.Release|x64.Build.0 = Release|x64
324+
{BEE7D50B-D914-43EC-975C-3FE2FC36E40D}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32
325+
{BEE7D50B-D914-43EC-975C-3FE2FC36E40D}.Debug|Mixed Platforms.Build.0 = Debug|Win32
326+
{BEE7D50B-D914-43EC-975C-3FE2FC36E40D}.Debug|Win32.ActiveCfg = Debug|Win32
327+
{BEE7D50B-D914-43EC-975C-3FE2FC36E40D}.Debug|Win32.Build.0 = Debug|Win32
328+
{BEE7D50B-D914-43EC-975C-3FE2FC36E40D}.Debug|x64.ActiveCfg = Debug|x64
329+
{BEE7D50B-D914-43EC-975C-3FE2FC36E40D}.Debug|x64.Build.0 = Debug|x64
330+
{BEE7D50B-D914-43EC-975C-3FE2FC36E40D}.Release|Mixed Platforms.ActiveCfg = Release|Win32
331+
{BEE7D50B-D914-43EC-975C-3FE2FC36E40D}.Release|Mixed Platforms.Build.0 = Release|Win32
332+
{BEE7D50B-D914-43EC-975C-3FE2FC36E40D}.Release|Win32.ActiveCfg = Release|Win32
333+
{BEE7D50B-D914-43EC-975C-3FE2FC36E40D}.Release|Win32.Build.0 = Release|Win32
334+
{BEE7D50B-D914-43EC-975C-3FE2FC36E40D}.Release|x64.ActiveCfg = Release|x64
335+
{BEE7D50B-D914-43EC-975C-3FE2FC36E40D}.Release|x64.Build.0 = Release|x64
322336
EndGlobalSection
323337
GlobalSection(SolutionProperties) = preSolution
324338
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)