mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-08-24 10:14:13 -05:00
The ComPtr, WinHandle, and obfuscate source files are shared with multiple sub-projects and thus need to be moved into the shared directory to uncouple their availability from libobs itself. The same applies to d3d8-api, inject-library, and hook-config (from win-capture), as well as comutils (from the virtualcam-module).
7 lines
318 B
CMake
7 lines
318 B
CMake
cmake_minimum_required(VERSION 3.22...3.25)
|
|
|
|
add_library(obs-tiny-nv12-scale INTERFACE)
|
|
add_library(OBS::tiny-nv12-scale ALIAS obs-tiny-nv12-scale)
|
|
target_sources(obs-tiny-nv12-scale INTERFACE tiny-nv12-scale.c tiny-nv12-scale.h)
|
|
target_include_directories(obs-tiny-nv12-scale INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}")
|