mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-02-28 04:19:05 -05:00
This widget was created primarily for the custom YouTube chat input and
used solely for that. With the custom YouTube input gone, it serves no
further purpose. If it's needed again in the future, it can be recreated
from the history.
Effectively reverts 5a298106bc.
79 lines
1.9 KiB
CMake
79 lines
1.9 KiB
CMake
if(NOT TARGET OBS::properties-view)
|
|
add_subdirectory("${CMAKE_SOURCE_DIR}/shared/properties-view" "${CMAKE_BINARY_DIR}/shared/properties-view")
|
|
endif()
|
|
|
|
if(NOT TARGET OBS::qt-plain-text-edit)
|
|
add_subdirectory("${CMAKE_SOURCE_DIR}/shared/qt/plain-text-edit" "${CMAKE_BINARY_DIR}/shared/qt/plain-text-edit")
|
|
endif()
|
|
|
|
if(NOT TARGET OBS::qt-slider-ignorewheel)
|
|
add_subdirectory(
|
|
"${CMAKE_SOURCE_DIR}/shared/qt/slider-ignorewheel"
|
|
"${CMAKE_BINARY_DIR}/shared/qt/slider-ignorewheel"
|
|
)
|
|
endif()
|
|
|
|
if(NOT TARGET OBS::qt-vertical-scroll-area)
|
|
add_subdirectory(
|
|
"${CMAKE_SOURCE_DIR}/shared/qt/vertical-scroll-area"
|
|
"${CMAKE_BINARY_DIR}/shared/qt/vertical-scroll-area"
|
|
)
|
|
endif()
|
|
|
|
target_link_libraries(
|
|
obs-studio
|
|
PRIVATE OBS::properties-view OBS::qt-plain-text-edit OBS::qt-slider-ignorewheel OBS::qt-vertical-scroll-area
|
|
)
|
|
|
|
target_sources(
|
|
obs-studio
|
|
PRIVATE
|
|
absolute-slider.cpp
|
|
absolute-slider.hpp
|
|
adv-audio-control.cpp
|
|
adv-audio-control.hpp
|
|
audio-encoders.cpp
|
|
audio-encoders.hpp
|
|
balance-slider.hpp
|
|
basic-controls.cpp
|
|
basic-controls.hpp
|
|
clickable-label.hpp
|
|
context-bar-controls.cpp
|
|
context-bar-controls.hpp
|
|
focus-list.cpp
|
|
focus-list.hpp
|
|
horizontal-scroll-area.cpp
|
|
horizontal-scroll-area.hpp
|
|
hotkey-edit.cpp
|
|
hotkey-edit.hpp
|
|
item-widget-helpers.cpp
|
|
item-widget-helpers.hpp
|
|
log-viewer.cpp
|
|
log-viewer.hpp
|
|
media-controls.cpp
|
|
media-controls.hpp
|
|
menu-button.cpp
|
|
menu-button.hpp
|
|
mute-checkbox.hpp
|
|
noncheckable-button.hpp
|
|
preview-controls.cpp
|
|
preview-controls.hpp
|
|
remote-text.cpp
|
|
remote-text.hpp
|
|
scene-tree.cpp
|
|
scene-tree.hpp
|
|
screenshot-obj.hpp
|
|
source-label.cpp
|
|
source-label.hpp
|
|
source-tree.cpp
|
|
source-tree.hpp
|
|
undo-stack-obs.cpp
|
|
undo-stack-obs.hpp
|
|
url-push-button.cpp
|
|
url-push-button.hpp
|
|
visibility-item-widget.cpp
|
|
visibility-item-widget.hpp
|
|
volume-control.cpp
|
|
volume-control.hpp
|
|
)
|