download_iLBC.props 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ImportGroup Label="PropertySheets">
  4. <Import Project="downloadpackage.task" Condition=" '$(downloadpackagetask_Imported)' == '' " />
  5. </ImportGroup>
  6. <PropertyGroup>
  7. <downloadiLBCPropsImported>true</downloadiLBCPropsImported>
  8. </PropertyGroup>
  9. <!--
  10. Download Target.
  11. Name must be unique.
  12. By design, targets are executed only once per project.
  13. Usage:
  14. package: URI
  15. expectfileordirectory: Skips the download and extraction if exists
  16. outputfolder: Folder to store a downloaded file.
  17. By default "$(BaseDir)libs", if empty
  18. outputfilename: If not empty, overrides filename from URI.
  19. .exe files don't get extracted
  20. extractto: Folder to extract an archive to
  21. -->
  22. <Target Name="iLBCDownloadTarget" BeforeTargets="CustomBuild;PreBuildEvent;" DependsOnTargets="7za">
  23. <DownloadPackageTask
  24. package="http://files.freeswitch.org/downloads/libs/ilbc-$(iLBC_Version).tar.gz"
  25. expectfileordirectory="$(BaseDir)libs\ilbc-$(iLBC_Version)\configure.ac"
  26. outputfolder=""
  27. outputfilename=""
  28. extractto="$(BaseDir)libs\"
  29. />
  30. </Target>
  31. </Project>