1
0
Fork 0
Aegisub/cmake/FindAviSynth.cmake

22 lines
561 B
CMake

find_package(PkgConfig QUIET)
pkg_check_modules(PC_AviSynth QUIET avisynth)
find_path(AviSynth_INCLUDE_DIRS
NAMES avisynth.h
PATH_SUFFIXES avisynth
HINTS ${PC_AviSynth_INCLUDE_DIRS}
)
find_library(AviSynth_SHARED_LIBRARY
NAMES avisynth
PATH_SUFFIXES c_api
HINTS ${PC_AviSynth_LIBRARY_DIRS}
)
set(AviSynth_VERSION ${PC_AviSynth_VERSION})
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(AviSynth
FOUND_VAR AviSynth_FOUND
REQUIRED_VARS
AviSynth_SHARED_LIBRARY
AviSynth_INCLUDE_DIRS
VERSION_VAR AviSynth_VERSION
)