Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « gtests « tests - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a7509f81f37ef480f81abd7bc8a54424324a2f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

if(WITH_GTESTS)
  # Otherwise we get warnings here that we cant fix in external projects
  remove_strict_flags()

  # Build common test runner
  add_subdirectory(runner)

  # Build tests not yet ported to the common runner
  add_subdirectory(testing)
  add_subdirectory(blenlib)
  add_subdirectory(blenloader)
  add_subdirectory(guardedalloc)
  add_subdirectory(bmesh)
  if(WITH_CODEC_FFMPEG)
    add_subdirectory(ffmpeg)
  endif()
  if(WITH_ALEMBIC)
    add_subdirectory(alembic)
  endif()
endif()