CMakeLists.txt 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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) 2014, Blender Foundation
  18. # All rights reserved.
  19. # ***** END GPL LICENSE BLOCK *****
  20. set(INC
  21. .
  22. ..
  23. ../../../source/blender/blenlib
  24. ../../../source/blender/makesdna
  25. ../../../intern/guardedalloc
  26. ../../../intern/atomic
  27. )
  28. include_directories(${INC})
  29. set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${PLATFORM_LINKFLAGS}")
  30. set(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS_DEBUG} ${PLATFORM_LINKFLAGS_DEBUG}")
  31. if(WIN32)
  32. set(BLI_path_util_extra_libs "bf_blenlib;bf_intern_utfconv;extern_wcwidth;${ZLIB_LIBRARIES}")
  33. else()
  34. set(BLI_path_util_extra_libs "bf_blenlib;extern_wcwidth;${ZLIB_LIBRARIES}")
  35. endif()
  36. BLENDER_TEST(BLI_array_store "bf_blenlib")
  37. BLENDER_TEST(BLI_array_utils "bf_blenlib")
  38. BLENDER_TEST(BLI_expr_pylike_eval "bf_blenlib")
  39. BLENDER_TEST(BLI_edgehash "bf_blenlib")
  40. BLENDER_TEST(BLI_ghash "bf_blenlib")
  41. BLENDER_TEST(BLI_hash_mm2a "bf_blenlib")
  42. BLENDER_TEST(BLI_heap "bf_blenlib")
  43. BLENDER_TEST(BLI_heap_simple "bf_blenlib")
  44. BLENDER_TEST(BLI_kdopbvh "bf_blenlib;bf_intern_numaapi")
  45. BLENDER_TEST(BLI_linklist_lockfree "bf_blenlib;bf_intern_numaapi")
  46. BLENDER_TEST(BLI_listbase "bf_blenlib")
  47. BLENDER_TEST(BLI_math_base "bf_blenlib")
  48. BLENDER_TEST(BLI_math_color "bf_blenlib")
  49. BLENDER_TEST(BLI_math_geom "bf_blenlib")
  50. BLENDER_TEST(BLI_memiter "bf_blenlib")
  51. BLENDER_TEST(BLI_path_util "${BLI_path_util_extra_libs}")
  52. BLENDER_TEST(BLI_polyfill_2d "bf_blenlib")
  53. BLENDER_TEST(BLI_stack "bf_blenlib")
  54. BLENDER_TEST(BLI_string "bf_blenlib")
  55. BLENDER_TEST(BLI_string_utf8 "bf_blenlib")
  56. BLENDER_TEST(BLI_task "bf_blenlib;bf_intern_numaapi")
  57. BLENDER_TEST_PERFORMANCE(BLI_ghash_performance "bf_blenlib")
  58. BLENDER_TEST_PERFORMANCE(BLI_task_performance "bf_blenlib")
  59. unset(BLI_path_util_extra_libs)