CMakeLists.txt 398 B

123456789101112131415
  1. # -*- cmake -*-
  2. # Ensure Tracy support is off for plugins and SLPlugin, to avoid crashes in
  3. # them; seen occurring at least under Windoze; Linux is fine; macOS unknown. HB
  4. include(00-BuildOptions)
  5. set(USE_TRACY OFF)
  6. # Plugins common to all OSes
  7. add_subdirectory(base)
  8. add_subdirectory(cef)
  9. add_subdirectory(gstreamer)
  10. add_subdirectory(webrtc)
  11. # Plugin wrapper program
  12. add_subdirectory(slplugin)