kde-extraapps/ark/plugins/CMakeLists.txt
Ivailo Monev f3ad4c778e ark: drop libarchive cmake module and unconditionalize some features
since CMake 2.8.3 (according to Raphael) FindLibArchive module is
bundled with it, to avoid dublication drop the bundled one.

in addition, libarchive does not conditionally define support of
archives and will just bail out if the format is not recognized
thus dropping the ifdef's in the handler
2015-01-04 02:18:10 +00:00

9 lines
261 B
CMake

if (LibArchive_FOUND)
add_subdirectory( libarchive )
endif (LibArchive_FOUND)
add_subdirectory( clirarplugin )
add_subdirectory( libsinglefileplugin )
add_subdirectory( clilhaplugin )
set(SUPPORTED_ARK_MIMETYPES "${SUPPORTED_ARK_MIMETYPES}" PARENT_SCOPE)