From 2ba74f3d7cb1cffeeca448bc24fe2b6db0f8a792 Mon Sep 17 00:00:00 2001 From: APTX Date: Fri, 24 Nov 2017 01:36:46 +0900 Subject: [PATCH] Correct feature option names --- CMakeLists.txt | 8 ++++---- featureplugins/CMakeLists.txt | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) 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() -- 2.52.0