obs-studio/deps/opts-parser/CMakeLists.txt
PatTheMav aa137f0766 deps: Update CMake target source lists with alphabetic sorting
Also manually updates some CMake script files to make code more
readable.
2023-12-19 17:59:44 -05:00

16 lines
396 B
CMake

cmake_minimum_required(VERSION 3.22...3.25)
add_library(opts-parser OBJECT)
add_library(OBS::opts-parser ALIAS opts-parser)
target_sources(
opts-parser
PRIVATE opts-parser.c
PUBLIC opts-parser.h)
target_include_directories(opts-parser PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}")
target_link_libraries(opts-parser PUBLIC OBS::libobs)
set_target_properties(opts-parser PROPERTIES FOLDER deps)