]> Some of my projects - aniplayer.git/commitdiff
Correct feature option names
authorAPTX <marek321@gmail.com>
Thu, 23 Nov 2017 16:36:46 +0000 (01:36 +0900)
committerAPTX <marek321@gmail.com>
Thu, 23 Nov 2017 16:36:46 +0000 (01:36 +0900)
CMakeLists.txt
featureplugins/CMakeLists.txt

index be9bc8e32ce2bc00d753337b04c5acad6196eb4e..67a0b925ca804bb16afc89cc1f76e9b41dd94359 100644 (file)
@@ -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)
index e9e49b1ca948bc884fa95cc50a2718313318ef56..7dfed400a879ff099aa7d425b280fb9f1925fabf 100644 (file)
@@ -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()