Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 359 Bytes

INTEGRATION.md

File metadata and controls

16 lines (13 loc) · 359 Bytes

How to integrate with CMake.FetchContent?

include(FetchContent)

FetchContent_Declare(
  qlibs.LIBRARY
  GIT_REPOSITORY https://github.com/qlibs/LIBRARY
  GIT_TAG v1.0.0
)
FetchContent_MakeAvailable(qlibs.LIBRARY)
target_link_libraries(${PROJECT_NAME} PUBLIC qlibs.LIBRARY);