CMakeLists.txt 615 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. if (ENABLE_AMLOGIC)
  2. add_subdirectory(amlogic)
  3. endif (ENABLE_AMLOGIC)
  4. if (ENABLE_DISPMANX)
  5. add_subdirectory(dispmanx)
  6. endif (ENABLE_DISPMANX)
  7. if (ENABLE_FB)
  8. add_subdirectory(framebuffer)
  9. endif (ENABLE_FB)
  10. if (ENABLE_OSX)
  11. add_subdirectory(osx)
  12. endif(ENABLE_OSX)
  13. if (ENABLE_V4L2 OR ENABLE_MF)
  14. add_subdirectory(video)
  15. endif ()
  16. if (ENABLE_X11)
  17. add_subdirectory(x11)
  18. endif(ENABLE_X11)
  19. if (ENABLE_XCB)
  20. add_subdirectory(xcb)
  21. endif(ENABLE_XCB)
  22. if (ENABLE_QT)
  23. add_subdirectory(qt)
  24. endif(ENABLE_QT)
  25. if (ENABLE_DX)
  26. add_subdirectory(directx)
  27. endif(ENABLE_DX)
  28. if (ENABLE_AUDIO)
  29. add_subdirectory(audio)
  30. endif()