Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 641 Bytes

File metadata and controls

21 lines (17 loc) · 641 Bytes

Consuming TerseLambda via CMake's FetchContent

This example project shows how to use TerseLambda via CMake's FetchContent module. See the package management documentation.

To use TerseLambda, you can use the following:

include(FetchContent)
FetchContent_Declare(
  TerseLambda
  GIT_REPOSITORY https://github.com/Quincunx271/TerseLambda.git
  GIT_TAG v1.0.0-alpha.1
)
FetchContent_MakeAvailable(TerseLambda)

# Later, when you define a target that depends on TerseLambda:
target_link_libraries(myTarget
  PRIVATE tl::tl
)