You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
339 B
16 lines
339 B
include(FeatureSummary)
|
|
|
|
find_program(LLVMRANLIB_EXECUTABLE
|
|
NAMES llvm-ranlib
|
|
DOC "The llvm-ranlib executable"
|
|
)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(LLVMRanLib
|
|
DEFAULT_MSG
|
|
LLVMRANLIB_EXECUTABLE)
|
|
|
|
SET_PACKAGE_PROPERTIES(LLVMRanLib PROPERTIES
|
|
DESCRIPTION "generate index for LLVM archive"
|
|
)
|