mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-01-01 10:58:23 -05:00
With the removal of all legacy code paths, obsconfig.h always exists and the compile definition always gets set. As such, it's no longer necessary to check for it. As removing the definition itself could be seen as a breaking change, this simply moves the definition to pc.in and cmake.in files for now to preserve the value for plugins that might expect this to be set. We may remove the definition entirely in a later release.
14 lines
377 B
PkgConfig
14 lines
377 B
PkgConfig
prefix=@CMAKE_INSTALL_PREFIX@
|
|
exec_prefix=${prefix}
|
|
libdir=${prefix}/lib
|
|
includedir=${prefix}/include
|
|
|
|
Name: libobs
|
|
Description: OBS Studio core compositor library
|
|
Version: @OBS_VERSION_CANONICAL@
|
|
|
|
Requires:
|
|
Libs: -L${libdir} -lobs
|
|
Libs.private: -pthread -lm
|
|
Cflags: -I${includedir} -std=gnu@CMAKE_C_STANDARD@ -fPIC -fvisibility=hidden -fopenmp-simd -Werror -DHAVE_OBSCONFIG_H
|