Fix regression from #969 (#1016)

In the previous CMake change the pkgconfig file was accidentally not installed anymore. Didn't recognized this earlier, because the OBS CI workflow was broken and therefore not running.
This commit is contained in:
Tom M 2022-01-04 16:55:15 +01:00 committed by GitHub
parent 46998a9d21
commit 015c6af52d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -836,6 +836,8 @@ else ()
endif ()
generate_pkgconfig_spec(fluidsynth.pc.in ${CMAKE_BINARY_DIR}/fluidsynth.pc libfluidsynth-OBJ)
install ( FILES ${CMAKE_BINARY_DIR}/fluidsynth.pc
DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig )
# Exported targets for cmake: find_package(FluidSynth)
# when installed, use CMAKE_PREFIX_PATH=fluidsynth-prefix;...