Warning, /utilities/ark/plugins/clizipplugin/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 ########### next target ###############
0002 
0003 set(kerfuffle_clizip_SRCS cliplugin.cpp)
0004 
0005 ecm_qt_declare_logging_category(kerfuffle_clizip_SRCS
0006                                 HEADER ark_debug.h
0007                                 IDENTIFIER ARK
0008                                 CATEGORY_NAME ark.clizip DESCRIPTION "Ark Infozip plugin" EXPORT ARK)
0009 
0010 configure_file(
0011     ${CMAKE_CURRENT_SOURCE_DIR}/kerfuffle_clizip.json.cmake
0012     ${CMAKE_CURRENT_BINARY_DIR}/kerfuffle_clizip.json)
0013 
0014 kerfuffle_parse_json_mimetypes(${CMAKE_CURRENT_BINARY_DIR}/kerfuffle_clizip.json)
0015 set(SUPPORTED_ARK_MIMETYPES "${SUPPORTED_ARK_MIMETYPES}${PLUGIN_SUPPORTED_MIMETYPES}" PARENT_SCOPE)
0016 
0017 kerfuffle_add_plugin(kerfuffle_clizip ${kerfuffle_clizip_SRCS})
0018 
0019 set(INSTALLED_KERFUFFLE_PLUGINS "${INSTALLED_KERFUFFLE_PLUGINS}kerfuffle_clizip;" PARENT_SCOPE)
0020 
0021 find_program(UNZIP unzip)
0022 if(UNZIP)
0023     message(STATUS "Found unzip executable: ${UNZIP}")
0024 else()
0025     message(WARNING "Could not find the unzip executable. Ark requires unzip or 7z to extract zip archives.")
0026 endif()
0027 
0028 find_program(ZIP zip)
0029 if(ZIP)
0030     message(STATUS "Found zip executable: ${ZIP}")
0031 else()
0032     message(WARNING "Could not find the zip executable. Ark requires zip or 7z to create or edit zip archives.")
0033 endif()