21 lines
500 B
CMake
21 lines
500 B
CMake
# streamer-tools OBS Camera Plugin - core library
|
|||
|
|
#
|
||
|
|
# No OBS dependency by design (see docs/superpowers/specs/
|
||
|
|
# 2026-09-06-obs-camera-plugin-design.md in the streamer-tools repo) --
|
||
|
|
# this must build and test headlessly on every platform.
|
||
|
|
|
||
|
|
add_library(stplugin_core STATIC
|
||
|
|
src/core.cpp
|
||
|
|
)
|
||
|
|
|
||
|
|
target_include_directories(stplugin_core
|
||
|
|
PUBLIC
|
||
|
|
${CMAKE_CURRENT_SOURCE_DIR}/include
|
||
|
|
)
|
||
|
|
|
||
|
|
set_target_properties(stplugin_core PROPERTIES
|
||
|
|
POSITION_INDEPENDENT_CODE ON
|
||
|
|
)
|
||
|
|
|
||
|
|
add_subdirectory(tests)
|