Commit 029e92dd authored by jan.koester's avatar jan.koester
Browse files

test

parent 17556f5a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -29,10 +29,10 @@ find_package_handle_standard_args(INIPARSER
# 4. Create the modern IMPORTED target (if found)
if(INIPARSER_FOUND AND NOT TARGET INIPARSER::INIPARSER)
    # The library is typically static, so we use INTERFACE/IMPORTED.
    add_library(INIPARSER::INIPARSER INTERFACE IMPORTED)
    add_library(iniparser::iniparser INTERFACE IMPORTED)
    
    # Add include directories and library path to the target properties
    set_target_properties(INIPARSER::INIPARSER PROPERTIES
    set_target_properties(iniparser::iniparser PROPERTIES
        INTERFACE_INCLUDE_DIRECTORIES "${INIPARSER_INCLUDE_DIR}"
        INTERFACE_LINK_LIBRARIES "${INIPARSER_LIBRARY}"
    )