CMakeLists.txt 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #
  2. # Copyright (c) Contributors to the Open 3D Engine Project.
  3. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0 OR MIT
  6. #
  7. #
  8. ################################################################################
  9. # Automated Tests
  10. ################################################################################
  11. o3de_pal_dir(pal_dir ${CMAKE_CURRENT_LIST_DIR}/Platform/${PAL_PLATFORM_NAME} ${gem_restricted_path} ${gem_path} ${gem_parent_relative_path})
  12. include(${pal_dir}/PAL_traits_${PAL_PLATFORM_NAME_LOWERCASE}.cmake)
  13. ## Asset pipeline ##
  14. add_subdirectory(assetpipeline)
  15. ## Atom Renderer ##
  16. add_subdirectory(Atom)
  17. ## Physics ##
  18. add_subdirectory(Physics)
  19. ## ScriptCanvas ##
  20. add_subdirectory(scripting)
  21. ## White Box ##
  22. add_subdirectory(WhiteBox)
  23. ## NvCloth ##
  24. add_subdirectory(NvCloth)
  25. ## Prefab ##
  26. add_subdirectory(Prefab)
  27. ## Editor Python Bindings ##
  28. add_subdirectory(EditorPythonBindings)
  29. ## Python Asset Builder ##
  30. add_subdirectory(PythonAssetBuilder)
  31. ## Blast ##
  32. add_subdirectory(Blast)
  33. ## Large Worlds ##
  34. add_subdirectory(largeworlds)
  35. ## Editor ##
  36. add_subdirectory(editor)
  37. ## Streaming ##
  38. add_subdirectory(streaming)
  39. ## Smoke ##
  40. add_subdirectory(smoke)
  41. ## Terrain ##
  42. add_subdirectory(Terrain)
  43. ## AWS ##
  44. add_subdirectory(AWS)
  45. ## Multiplayer ##
  46. add_subdirectory(Multiplayer)
  47. ## Integration tests for editor testing framework ##
  48. add_subdirectory(editor_test_testing)