1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-12 07:35:51 +01:00

Visual Studio 2012 project files for those wanting to try it

This was NOT just a straightforward conversion.  It took days to
figure out why projects kept building over and over again, so
committing is the best way for people to kick the tires.

These are completely separate from the VS2008 project files, so
they do not affect current build process.
This commit is contained in:
lllucius
2013-10-31 04:15:34 +00:00
parent 0c0b290581
commit 5db51c3f92
32 changed files with 4774 additions and 0 deletions

19
win/ny.props Executable file
View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup
Condition="'$(copyBeforeTargets)' == '' and '$(copyAfterTargets)' == '' and '$(ConfigurationType)' != 'Makefile'">
<copyBeforeTargets>Midl</copyBeforeTargets>
<copyAfterTargets>CustomBuild</copyAfterTargets>
</PropertyGroup>
<PropertyGroup>
<copyDependsOn
Condition="'$(ConfigurationType)' != 'Makefile'">_SelectedFiles;$(copyDependsOn)</copyDependsOn>
</PropertyGroup>
<ItemDefinitionGroup>
<copy>
<CommandLineTemplate>copy /Y [inputs] ..\..\$(IntDir)Plug-ins\%(Filename)%(Extension)</CommandLineTemplate>
<Outputs>..\..\$(IntDir)Plug-ins\%(Filename)%(Extension)</Outputs>
<ExecutionDescription>Copying %(Filename)%(Extension)</ExecutionDescription>
</copy>
</ItemDefinitionGroup>
</Project>