summarylogtreecommitdiffstats
path: root/Findutf8cpp.cmake
blob: 7a391db42cd7c1b2ebc665c80b58ac3aaa4199e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
find_package(utf8cpp CONFIG REQUIRED)

if(utf8cpp_FOUND)
    if(TARGET utf8cpp::utf8cpp AND NOT TARGET utf8cpp)
        message(STATUS "Found utf8cpp::utf8cpp, creating alias target 'utf8cpp'")
        add_library(utf8cpp INTERFACE IMPORTED)
        set_target_properties(utf8cpp PROPERTIES
            INTERFACE_LINK_LIBRARIES utf8cpp::utf8cpp
        )
    endif()
endif()