-
Notifications
You must be signed in to change notification settings - Fork 98
Open
Labels
Description
Hi,
Great project! I was wondering if cmake FetchContent integration is planned? I think it would make it easier to include this library in other projects. Currently it sort of works, but the header include path is not picked up by default.
include(FetchContent)
FetchContent_Declare(
avcpp
GIT_REPOSITORY https://github.com/h4tr3d/avcpp.git
GIT_TAG v2.7.1
)
FetchContent_MakeAvailable(avcpp)
message(STATUS "headers: ${avcpp_SOURCE_DIR}/src")
Thanks!
Reactions are currently unavailable