Skip to content
This repository has been archived by the owner on Jul 21, 2020. It is now read-only.

Commit

Permalink
merge 0.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sslivins committed Oct 4, 2016
2 parents 8b4476a + f96cf11 commit 2959764
Show file tree
Hide file tree
Showing 347 changed files with 6,255 additions and 389 deletions.
9 changes: 9 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@
[submodule "plugins/mac-syphon/syphon-framework"]
path = plugins/mac-syphon/syphon-framework
url = https://github.com/palana/Syphon-Framework.git

[submodule "plugins/libftl/ftl-sdk"]
path = plugins/libftl/ftl-sdk
url = https://github.com/WatchBeam/ftl-sdk.git

[submodule "plugins/enc-amf"]
path = plugins/enc-amf
url = https://github.com/Xaymar/OBS-AMD-Advanced-Media-Framework.git

[submodule "plugins/obs-browser"]
path = plugins/obs-browser
url = https://github.com/kc5nra/obs-browser.git
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ if(NOT INSTALLER_RUN)

add_subdirectory(libobs-opengl)
add_subdirectory(libobs)
add_subdirectory(obs)
add_subdirectory(UI)
add_subdirectory(plugins)
if (BUILD_TESTS)
add_subdirectory(test)
Expand Down
3 changes: 3 additions & 0 deletions CONTRIBUTING
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ Contributing Information:
https://obsproject.com/forum/list/general-development.21/

- Development IRC channel is primarily #obs-dev on QuakeNet

- To contribute translations, see:
https://obsproject.com/forum/threads/how-to-contribute-translations-for-obs.16327/


Contributing Guidelines:
Expand Down
14 changes: 12 additions & 2 deletions obs/CMakeLists.txt → UI/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
project(obs)

option(ENABLE_UI "Enables the OBS user interfaces" ON)
if(DISABLE_UI)
message(STATUS "UI disabled")
Expand All @@ -10,6 +8,12 @@ else()
set(FIND_MODE QUIET)
endif()

add_subdirectory(obs-frontend-api)

# ----------------------------------------------------------------------------

project(obs)

if(DEFINED QTDIR${_lib_suffix})
list(APPEND CMAKE_PREFIX_PATH "${QTDIR${_lib_suffix}}")
elseif(DEFINED QTDIR)
Expand Down Expand Up @@ -40,6 +44,7 @@ if(NOT Qt5Widgets_FOUND)
endif()
endif()

include_directories(SYSTEM "obs-frontend-api")
include_directories(SYSTEM "${CMAKE_SOURCE_DIR}/libobs")

find_package(Libcurl REQUIRED)
Expand Down Expand Up @@ -97,6 +102,7 @@ endif()
set(obs_SOURCES
${obs_PLATFORM_SOURCES}
obs-app.cpp
api-interface.cpp
window-basic-main.cpp
window-basic-filters.cpp
window-basic-settings.cpp
Expand All @@ -106,6 +112,7 @@ set(obs_SOURCES
window-basic-source-select.cpp
window-basic-main-scene-collections.cpp
window-basic-main-transitions.cpp
window-basic-main-dropfiles.cpp
window-basic-main-profiles.cpp
window-license-agreement.cpp
window-basic-status-bar.cpp
Expand Down Expand Up @@ -219,6 +226,7 @@ target_link_libraries(obs
libobs
libff
Qt5::Widgets
obs-frontend-api
${LIBCURL_LIBRARIES}
${obs_PLATFORM_LIBRARIES})

Expand All @@ -232,3 +240,5 @@ if (UNIX AND UNIX_STRUCTURE AND NOT APPLE)
install(FILES forms/images/obs.png
DESTINATION ${CMAKE_INSTALL_FULL_DATAROOTDIR}/icons/hicolor/256x256/apps)
endif()

add_subdirectory(frontend-plugins)
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 2959764

Please sign in to comment.