libs.conf 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. //-----------------------------------------------------------------------------
  3. // Copyright (c) 2012 GarageGames, LLC
  4. //
  5. // Permission is hereby granted, free of charge, to any person obtaining a copy
  6. // of this software and associated documentation files (the "Software"), to
  7. // deal in the Software without restriction, including without limitation the
  8. // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  9. // sell copies of the Software, and to permit persons to whom the Software is
  10. // furnished to do so, subject to the following conditions:
  11. //
  12. // The above copyright notice and this permission notice shall be included in
  13. // all copies or substantial portions of the Software.
  14. //
  15. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21. // IN THE SOFTWARE.
  22. //-----------------------------------------------------------------------------
  23. setPlatform( 'win32' );
  24. // Supporing Libs
  25. includeLib( 'mng' );
  26. includeLib( 'png' );
  27. includeLib( 'ungif' );
  28. includeLib( 'zlib' );
  29. includeLib( 'jpeg' );
  30. includeLib( 'tinyxml' );
  31. includeLib( 'opcode' );
  32. includeLib( 'libvorbis' );
  33. includeLib( 'libogg' );
  34. includeLib( 'squish' );
  35. includeLib( 'collada_dom' );
  36. includeLib( 'pcre' );
  37. includeLib( 'd3dx8dll' );
  38. /////// Stub "lib" with dependencies to trigger a full compile
  39. beginLibConfig( 'Torque 3D Supporting Libs', '{1E68C046-26D7-4AD9-BEF2-590C6B99B40A}' );
  40. /// Dependencies
  41. addProjectDependency( 'collada_dom' );
  42. addProjectDependency( 'd3dx8dll' );
  43. addProjectDependency( 'libogg' );
  44. addProjectDependency( 'libvorbis' );
  45. addProjectDependency( 'ljpeg' );
  46. addProjectDependency( 'lmng' );
  47. addProjectDependency( 'lpng' );
  48. addProjectDependency( 'lungif' );
  49. addProjectDependency( 'opcode' );
  50. addProjectDependency( 'pcre' );
  51. addProjectDependency( 'squish' );
  52. addProjectDependency( 'tinyxml' );
  53. addProjectDependency( 'zlib' );
  54. endLibConfig();
  55. ///////////////// And our solution
  56. beginSolutionConfig( 'Torque 3D Supporting Libs', '{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}' );
  57. addSolutionProjectRef( 'Torque 3D Supporting Libs' );
  58. addSolutionProjectRef( 'collada_dom' );
  59. addSolutionProjectRef( 'd3dx8dll' );
  60. addSolutionProjectRef( 'libogg' );
  61. addSolutionProjectRef( 'libvorbis' );
  62. addSolutionProjectRef( 'ljpeg' );
  63. addSolutionProjectRef( 'lmng' );
  64. addSolutionProjectRef( 'lpng' );
  65. addSolutionProjectRef( 'lungif' );
  66. addSolutionProjectRef( 'opcode' );
  67. addSolutionProjectRef( 'pcre' );
  68. addSolutionProjectRef( 'squish' );
  69. addSolutionProjectRef( 'tinyxml' );
  70. addSolutionProjectRef( 'zlib' );
  71. endSolutionConfig();
  72. ?>