File: FindLLVMRanLib.cmake

package info (click to toggle)
mixxx 2.3.3~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 152,296 kB
  • sloc: cpp: 242,036; xml: 192,631; javascript: 123,601; ansic: 28,424; sh: 4,564; python: 3,558; makefile: 382; sql: 32
file content (15 lines) | stat: -rw-r--r-- 339 bytes parent folder | download | duplicates (44)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"
)