CMakeLists.txt 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. ## Large Worlds ##
  32. add_subdirectory(largeworlds)
  33. ## Editor ##
  34. add_subdirectory(editor)
  35. ## Streaming ##
  36. add_subdirectory(streaming)
  37. ## Smoke ##
  38. add_subdirectory(smoke)
  39. ## Terrain ##
  40. add_subdirectory(Terrain)
  41. ## Multiplayer ##
  42. add_subdirectory(Multiplayer)
  43. ## Integration tests for editor testing framework ##
  44. add_subdirectory(editor_test_testing)
  45. ## Performance ##
  46. add_subdirectory(Performance)