38c2fc87aa
Completely removes the build dir in favor of cmake based build layouting
13 lines
245 B
CMake
13 lines
245 B
CMake
project(image-source)
|
|
|
|
set(image-source_SOURCES
|
|
image-source.c)
|
|
|
|
add_library(image-source MODULE
|
|
${image-source_SOURCES})
|
|
target_link_libraries(image-source
|
|
libobs)
|
|
|
|
install_obs_plugin(image-source)
|
|
install_obs_plugin_data(image-source data)
|