Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
univrsal committed Aug 11, 2017
1 parent 3aaff90 commit fd19f18
Show file tree
Hide file tree
Showing 3 changed files with 621 additions and 0 deletions.
17 changes: 17 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
project(input-overlay)

if(MSVC)
set(input-overlay_PLATFORM_DEPS
w32-pthreads)
endif()

set(input-overlay_SOURCES
input-overlay.cpp)

add_library(input-overlay MODULE
${input-overlay_SOURCES})
target_link_libraries(input-overlay
libobs
${input-overlay_PLATFORM_DEPS})

install_obs_plugin_with_data(input-overlay data)
6 changes: 6 additions & 0 deletions data/locale/en-US.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
InputOverlay="Input Overlay"
Filter.ImageFiles="Image Files"
Filter.TextFiles="Text Files"
Filter.AllFiles="All Files"
OverlayFile="Overlay Image File"
LayoutFile="Layout Config File"
Loading

0 comments on commit fd19f18

Please sign in to comment.