CMakeLists.txt 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. # ***** BEGIN GPL LICENSE BLOCK *****
  2. #
  3. # This program is free software; you can redistribute it and/or
  4. # modify it under the terms of the GNU General Public License
  5. # as published by the Free Software Foundation; either version 2
  6. # of the License, or (at your option) any later version.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. #
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program; if not, write to the Free Software Foundation,
  15. # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  16. #
  17. # The Original Code is Copyright (C) 2006, Blender Foundation
  18. # All rights reserved.
  19. #
  20. # The Original Code is: all of this file.
  21. #
  22. # Contributor(s): Jacques Beaurain.
  23. #
  24. # ***** END GPL LICENSE BLOCK *****
  25. # add_subdirectory(atomic) # header only
  26. add_subdirectory(string)
  27. add_subdirectory(ghost)
  28. add_subdirectory(guardedalloc)
  29. add_subdirectory(libmv)
  30. add_subdirectory(memutil)
  31. add_subdirectory(opencolorio)
  32. add_subdirectory(mikktspace)
  33. add_subdirectory(glew-mx)
  34. add_subdirectory(eigen)
  35. if(WITH_GAMEENGINE_DECKLINK)
  36. add_subdirectory(decklink)
  37. endif()
  38. if(WITH_AUDASPACE)
  39. add_subdirectory(audaspace)
  40. endif()
  41. if(WITH_MOD_REMESH)
  42. add_subdirectory(dualcon)
  43. endif()
  44. if(WITH_MOD_FLUID)
  45. add_subdirectory(elbeem)
  46. endif()
  47. if(WITH_MOD_SMOKE)
  48. add_subdirectory(smoke)
  49. endif()
  50. if(WITH_IK_SOLVER)
  51. add_subdirectory(iksolver)
  52. endif()
  53. if(WITH_IK_ITASC)
  54. add_subdirectory(itasc)
  55. endif()
  56. if(WITH_GAMEENGINE)
  57. add_subdirectory(moto)
  58. endif()
  59. if(WITH_CYCLES)
  60. add_subdirectory(cycles)
  61. endif()
  62. if(WITH_INTERNATIONAL)
  63. add_subdirectory(locale)
  64. endif()
  65. if(WITH_BULLET)
  66. add_subdirectory(rigidbody)
  67. endif()
  68. if(WITH_OPENSUBDIV)
  69. add_subdirectory(opensubdiv)
  70. endif()
  71. # only windows needs utf16 converter
  72. # gpudirect is a runtime interface to the nVidia's DVP driver, only for windows
  73. if(WIN32)
  74. add_subdirectory(utfconv)
  75. add_subdirectory(gpudirect)
  76. endif()
  77. if(WITH_OPENVDB)
  78. add_subdirectory(openvdb)
  79. endif()