1
0

feature-idian-playground.cmake 404 B

1234567891011
  1. option(ENABLE_IDIAN_PLAYGROUND "Enable building custom idian widget demo window" OFF)
  2. if(ENABLE_IDIAN_PLAYGROUND)
  3. target_sources(
  4. obs-studio
  5. PRIVATE forms/OBSIdianPlayground.ui dialogs/OBSIdianPlayground.hpp dialogs/OBSIdianPlayground.cpp
  6. )
  7. target_enable_feature(obs-studio "Idian Playground" ENABLE_IDIAN_PLAYGROUND)
  8. else()
  9. target_disable_feature(obs-studio "Idian Playground")
  10. endif()