From: APTX Date: Thu, 23 Nov 2017 16:36:46 +0000 (+0900) Subject: Correct feature option names X-Git-Url: https://gitweb.aptx.org/?a=commitdiff_plain;h=2ba74f3d7cb1cffeeca448bc24fe2b6db0f8a792;p=aniplayer.git Correct feature option names --- diff --git a/CMakeLists.txt b/CMakeLists.txt index be9bc8e..67a0b92 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,11 +11,11 @@ add_feature_info(QmlDesktopUI WITH_DESKTOP_UI "default desktop UI, using QML") 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) diff --git a/featureplugins/CMakeLists.txt b/featureplugins/CMakeLists.txt index e9e49b1..7dfed40 100644 --- a/featureplugins/CMakeLists.txt +++ b/featureplugins/CMakeLists.txt @@ -2,10 +2,10 @@ project(featureplugins) 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()