changeset 1021:fab139c44f72

cmake: fix case issue
author David Demelier <markand@malikania.fr>
date Tue, 23 Feb 2021 16:58:31 +0100
parents 3dec26654d06
children a6ee9827e851
files plugins/CMakeLists.txt
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/CMakeLists.txt	Tue Feb 23 09:19:27 2021 +0100
+++ b/plugins/CMakeLists.txt	Tue Feb 23 16:58:31 2021 +0100
@@ -41,8 +41,8 @@
 
 if (IRCCD_WITH_JS)
 	foreach (p ${JS_PLUGINS})
-		string(TOUPPER ${p} p)
-		if (IRCCD_WITH_PLUGIN_${p})
+		string(TOUPPER ${p} plg)
+		if (IRCCD_WITH_PLUGIN_${plg})
 			add_subdirectory(${p})
 		endif ()
 	endforeach ()