2012-11-12 22:10:00 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<!-- VC boilerplate -->
|
|
|
|
<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">
|
|
|
|
<ProjectGuid>{F934AB7B-186B-4E96-B20C-A58C38C1B819}</ProjectGuid>
|
|
|
|
<Keyword>MakeFileProj</Keyword>
|
|
|
|
<ConfigurationType>Makefile</ConfigurationType>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<!-- Aegisub project configuration -->
|
|
|
|
<ImportGroup Label="PropertySheets">
|
|
|
|
<Import Project="$(MSBuildThisFileDirectory)..\aegisub.props" />
|
|
|
|
</ImportGroup>
|
|
|
|
|
|
|
|
<UsingTask TaskName="ExecShellScript" AssemblyFile="$(AegisubBinaryDir)BuildTasks.dll" />
|
|
|
|
<UsingTask TaskName="MsysPath" AssemblyFile="$(AegisubBinaryDir)BuildTasks.dll" />
|
|
|
|
<UsingTask TaskName="UpdateFile" AssemblyFile="$(AegisubBinaryDir)BuildTasks.dll" />
|
|
|
|
|
|
|
|
<PropertyGroup Label="ConfigArgs">
|
2012-11-14 16:46:44 +01:00
|
|
|
<CfgDebug Condition="'$(Configuration)' == 'Debug'">--enable-debug --disable-stripping --extra-cflags=-MDd</CfgDebug>
|
|
|
|
<CfgDebug Condition="'$(Configuration)' == 'Release'">--disable-debug --extra-cflags=-MD</CfgDebug>
|
2012-11-12 22:10:00 +01:00
|
|
|
<CfgArgs>
|
|
|
|
--disable-avfilter
|
|
|
|
--disable-avresample
|
|
|
|
--disable-bzlib
|
|
|
|
--disable-devices
|
|
|
|
--disable-doc
|
|
|
|
--disable-encoders
|
|
|
|
--disable-ffmpeg
|
|
|
|
--disable-ffplay
|
|
|
|
--disable-ffprobe
|
|
|
|
--disable-ffserver
|
|
|
|
--disable-filters
|
|
|
|
--disable-hwaccels
|
|
|
|
--disable-muxers
|
|
|
|
--disable-network
|
|
|
|
--disable-postproc
|
|
|
|
--disable-pthreads
|
|
|
|
--disable-shared
|
|
|
|
--disable-swresample
|
|
|
|
--enable-gpl
|
|
|
|
--enable-runtime-cpudetect
|
|
|
|
--enable-static
|
|
|
|
--extra-cflags=-D_SYSCRT
|
2012-11-14 16:46:44 +01:00
|
|
|
--extra-cflags=-wd4005
|
|
|
|
--extra-cflags=-wd4189
|
|
|
|
--extra-cflags=-FI$(MSBuildThisFileDirectory)dynamic_msvcrt.h
|
2012-11-12 22:10:00 +01:00
|
|
|
--toolchain=msvc
|
|
|
|
$(CfgEnableDebug)
|
|
|
|
</CfgArgs>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2012-11-13 18:37:47 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<ConfigureInput Include="$(FfmpegSrcDir)\configure" />
|
|
|
|
|
|
|
|
<ConfigureOutput Include="$(AegisubObjectDir)config.*" />
|
|
|
|
<ConfigureOutput Include="$(AegisubObjectDir)Makefile" />
|
|
|
|
<ConfigureOutput Include="$(AegisubObjectDir)libavutil\avconfig.h" />
|
|
|
|
|
|
|
|
<CompileInput Include="$(FfmpegSrcDir)\*.mak" />
|
|
|
|
<CompileInput Include="$(FfmpegSrcDir)\**\*.c" />
|
|
|
|
<CompileInput Include="$(FfmpegSrcDir)\**\*.asm" />
|
|
|
|
<CompileInput Include="$(FfmpegSrcDir)\**\Makefile" />
|
|
|
|
|
|
|
|
<CompileOutput Include="$(AegisubObjectDir)libavcodec\libavcodec.a" />
|
|
|
|
<CompileOutput Include="$(AegisubObjectDir)libavformat\libavformat.a" />
|
|
|
|
<CompileOutput Include="$(AegisubObjectDir)libavutil\libavutil.a" />
|
|
|
|
<CompileOutput Include="$(AegisubObjectDir)libswscale\libswscale.a" />
|
|
|
|
|
|
|
|
<InstallOutput Include="$(AegisubLibraryDir)libavcodec.a" />
|
|
|
|
<InstallOutput Include="$(AegisubLibraryDir)libavformat.a" />
|
|
|
|
<InstallOutput Include="$(AegisubLibraryDir)libavutil.a" />
|
|
|
|
<InstallOutput Include="$(AegisubLibraryDir)libswscale.a" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<Target Name="Configure"
|
|
|
|
Inputs="@(ConfigureInput)"
|
|
|
|
Outputs="@(ConfigureOutput)"
|
|
|
|
>
|
2012-11-12 22:10:00 +01:00
|
|
|
<MsysPath ProjectDir="$(MSBuildThisFileDirectory)" Path="$(AegisubObjectDir)\temp">
|
|
|
|
<Output TaskParameter="Result" PropertyName="CfgPrefix" />
|
|
|
|
</MsysPath>
|
|
|
|
|
|
|
|
<MsysPath ProjectDir="$(MSBuildThisFileDirectory)" Path="../../include">
|
|
|
|
<Output TaskParameter="Result" PropertyName="CfgIncludePrefix" />
|
|
|
|
</MsysPath>
|
|
|
|
|
|
|
|
<MsysPath ProjectDir="$(MSBuildThisFileDirectory)" Path="../../lib/$(Platform)/$(Configuration)">
|
|
|
|
<Output TaskParameter="Result" PropertyName="CfgLibPrefix" />
|
|
|
|
</MsysPath>
|
|
|
|
|
|
|
|
<ExecShellScript
|
|
|
|
Script="$(FfmpegSrcDir)\configure"
|
|
|
|
Arguments="$(CfgArgs) --prefix=$(CfgPrefix) --libdir=$(CfgLibPrefix) --incdir=$(CfgIncludePrefix)"
|
|
|
|
WorkingDirectory="$(AegisubObjectDir)"
|
|
|
|
/>
|
|
|
|
|
2012-11-13 18:37:47 +01:00
|
|
|
<!-- Ensure that Makefile has a recent modified time to avoid
|
|
|
|
rerunning configure pointlessly -->
|
|
|
|
<Touch Files="@(ConfigureOutput)" />
|
|
|
|
</Target>
|
2012-11-12 22:10:00 +01:00
|
|
|
|
2012-11-13 18:37:47 +01:00
|
|
|
<Target Name="Compile"
|
|
|
|
Inputs="@(ConfigureOutput);@(CompileInput)"
|
|
|
|
Outputs="@(CompileOutput)"
|
|
|
|
>
|
2012-11-12 22:10:00 +01:00
|
|
|
<ExecShellScript
|
|
|
|
Command="make"
|
|
|
|
Arguments="-j$(NUMBER_OF_PROCESSORS)"
|
|
|
|
WorkingDirectory="$(AegisubObjectDir)"
|
|
|
|
/>
|
2012-11-13 18:37:47 +01:00
|
|
|
</Target>
|
2012-11-12 22:10:00 +01:00
|
|
|
|
2012-11-13 18:37:47 +01:00
|
|
|
<Target Name="Install"
|
|
|
|
Inputs="@(CompileOutput)"
|
|
|
|
Outputs="@(InstallOutput)"
|
|
|
|
>
|
2012-11-12 22:10:00 +01:00
|
|
|
<ExecShellScript
|
|
|
|
Command="make install"
|
|
|
|
WorkingDirectory="$(AegisubObjectDir)"
|
|
|
|
/>
|
|
|
|
</Target>
|
|
|
|
|
2012-11-13 18:37:47 +01:00
|
|
|
<Target Name="Build">
|
|
|
|
<Error Condition="!Exists('$(FfmpegSrcDir)')" Text="FFmpeg source not found at '$(FfmpegSrcDir)'" />
|
|
|
|
|
|
|
|
<CallTarget Targets="Configure" />
|
|
|
|
<CallTarget Targets="Compile" />
|
|
|
|
<CallTarget Targets="Install" />
|
|
|
|
</Target>
|
|
|
|
|
2012-11-12 22:10:00 +01:00
|
|
|
<Target Name="Clean">
|
|
|
|
<RemoveDir Directories="$(AegisubObjectDir)" ContinueOnError="WarnAndContinue" />
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
<Target Name="Rebuild">
|
|
|
|
<CallTarget Targets="Clean;Build" />
|
|
|
|
</Target>
|
|
|
|
</Project>
|