option(WITH_BACKEND_MPV "Build MPV backend" ON)
add_feature_info(BackendMpv WITH_BACKEND_MPV "the MPV backend")
-option(WITH_LOCALMYLIST "Build LocalMyList feature plugin" ON)
-add_feature_info(FeatureLocalMyList WITH_LOCALMYLIST "automatically mark files as watched that are in your LocalMyList")
+option(WITH_FEATURE_LOCALMYLIST "Build LocalMyList feature plugin" ON)
+add_feature_info(FeatureLocalMyList WITH_FEATURE_LOCALMYLIST "automatically mark files as watched that are in your LocalMyList")
-option(WITH_ANNOTATIONS "Build annotations feature plugin" ON)
-add_feature_info(FeatureAnnotations WITH_ANNOTATIONS "annotate certain features in the video")
+option(WITH_FEATURE_ANNOTATIONS "Build annotations feature plugin" ON)
+add_feature_info(FeatureAnnotations WITH_FEATURE_ANNOTATIONS "annotate certain features in the video")
add_subdirectory(pluginapi)
add_subdirectory(core)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/featureplugins)
-if (WITH_LOCALMYLIST)
+if (WITH_FEATURE_LOCALMYLIST)
add_subdirectory(feature_localmylist)
endif()
-if (WITH_ANNOTATIONS)
+if (WITH_FEATURE_ANNOTATIONS)
add_subdirectory(feature_annotations)
endif()