062b50abff
CMake IMPORTED targets should be namespaced so that CMake knows that the name refers to a target and not a file. Use the existing WrapXXX naming scheme where applicable. Fixes: QTBUG-83773 Change-Id: I5b0b722c811200c56c260c69e76940a625228769 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
18 lines
598 B
CMake
18 lines
598 B
CMake
# Find the Slog2 library
|
|
|
|
# Will make the target Slog2::Slog2 available when found.
|
|
|
|
find_library(Slog2_LIBRARY NAMES "slog2")
|
|
find_path(Slog2_INCLUDE_DIR NAMES "sys/slog2.h" DOC "The Slog2 Include path")
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(Slog2 DEFAULT_MSG Slog2_INCLUDE_DIR Slog2_LIBRARY)
|
|
|
|
mark_as_advanced(Slog2_INCLUDE_DIR Slog2_LIBRARY)
|
|
|
|
if(Slog2_FOUND)
|
|
add_library(Slog2::Slog2 INTERFACE IMPORTED)
|
|
target_link_libraries(Slog2::Slog2 INTERFACE ${Slog2_LIBRARY})
|
|
target_include_directories(Slog2::Slog2 INTERFACE ${Slog2_INCLUDE_DIR})
|
|
endif()
|