06731b14d7
- Catch 1.12.0 -> 1.12.2 - Google Benchmark 1.3.0 -> 1.4.1
16 lines
379 B
CMake
Executable file
16 lines
379 B
CMake
Executable file
include(FeatureSummary)
|
|
|
|
find_program(LLVMAR_EXECUTABLE
|
|
NAMES llvm-ar
|
|
DOC "The llvm-ar executable"
|
|
)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(LLVMAr
|
|
DEFAULT_MSG
|
|
LLVMAR_EXECUTABLE)
|
|
|
|
SET_PACKAGE_PROPERTIES(LLVMAr PROPERTIES
|
|
URL https://llvm.org/docs/CommandGuide/llvm-ar.html
|
|
DESCRIPTION "create, modify, and extract from archives"
|
|
)
|