CMakeLists.txt 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. # ***** END GPL LICENSE BLOCK *****
  20. # add_subdirectory(atomic) # header only
  21. add_subdirectory(clog)
  22. add_subdirectory(string)
  23. add_subdirectory(ghost)
  24. add_subdirectory(guardedalloc)
  25. add_subdirectory(libmv)
  26. add_subdirectory(memutil)
  27. add_subdirectory(numaapi)
  28. add_subdirectory(opencolorio)
  29. add_subdirectory(opensubdiv)
  30. add_subdirectory(mikktspace)
  31. add_subdirectory(glew-mx)
  32. add_subdirectory(eigen)
  33. if(WITH_AUDASPACE)
  34. add_subdirectory(audaspace)
  35. endif()
  36. if(WITH_MOD_REMESH)
  37. add_subdirectory(dualcon)
  38. endif()
  39. if(WITH_MOD_FLUID)
  40. add_subdirectory(elbeem)
  41. endif()
  42. if(WITH_MOD_SMOKE)
  43. add_subdirectory(smoke)
  44. endif()
  45. if(WITH_IK_SOLVER)
  46. add_subdirectory(iksolver)
  47. endif()
  48. if(WITH_IK_ITASC)
  49. add_subdirectory(itasc)
  50. endif()
  51. if(WITH_CYCLES)
  52. add_subdirectory(cycles)
  53. endif()
  54. if(WITH_INTERNATIONAL)
  55. add_subdirectory(locale)
  56. endif()
  57. if(WITH_BULLET)
  58. add_subdirectory(rigidbody)
  59. endif()
  60. # only windows needs utf16 converter
  61. if(WIN32)
  62. add_subdirectory(utfconv)
  63. endif()
  64. if(WITH_OPENVDB)
  65. add_subdirectory(openvdb)
  66. endif()