CMakeLists.txt 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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): Daniel Genrich
  23. #
  24. # ***** END GPL LICENSE BLOCK *****
  25. remove_cc_flag_unsigned_char()
  26. set(INC
  27. Recast/Include
  28. Detour/Include
  29. )
  30. set(INC_SYS
  31. )
  32. set(SRC
  33. recast-capi.cpp
  34. recast-capi.h
  35. Detour/Source/DetourCommon.cpp
  36. Detour/Source/DetourNode.cpp
  37. Detour/Source/DetourStatNavMesh.cpp
  38. Detour/Source/DetourStatNavMeshBuilder.cpp
  39. Detour/Source/DetourTileNavMesh.cpp
  40. Detour/Source/DetourTileNavMeshBuilder.cpp
  41. Detour/Include/DetourCommon.h
  42. Detour/Include/DetourNode.h
  43. Detour/Include/DetourStatNavMesh.h
  44. Detour/Include/DetourStatNavMeshBuilder.h
  45. Detour/Include/DetourTileNavMesh.h
  46. Detour/Include/DetourTileNavMeshBuilder.h
  47. Recast/Source/Recast.cpp
  48. Recast/Source/RecastAlloc.cpp
  49. Recast/Source/RecastArea.cpp
  50. Recast/Source/RecastContour.cpp
  51. Recast/Source/RecastFilter.cpp
  52. Recast/Source/RecastLayers.cpp
  53. Recast/Source/RecastMesh.cpp
  54. Recast/Source/RecastMeshDetail.cpp
  55. Recast/Source/RecastRasterization.cpp
  56. Recast/Source/RecastRegion.cpp
  57. Recast/Include/Recast.h
  58. Recast/Include/RecastAlloc.h
  59. Recast/Include/RecastAssert.h
  60. )
  61. blender_add_lib(extern_recastnavigation "${SRC}" "${INC}" "${INC_SYS}")