[CMake] fix mapnik_find_plugin_dir

This commit is contained in:
Mathis Logemann 2021-10-06 16:43:55 +02:00
parent 6f01d7a34a
commit 95e210521c

View file

@ -28,11 +28,11 @@ endforeach()
function(mapnik_find_plugin_dir PLUGIN_DIR) function(mapnik_find_plugin_dir PLUGIN_DIR)
string(TOUPPER "${CMAKE_BUILD_TYPE}" _build_type_l) string(TOUPPER "${CMAKE_BUILD_TYPE}" _build_type_l)
set(_plugin_dir "${MAPNIK_PLUGINS_DIR_${_build_config}}") set(_plugin_dir "${MAPNIK_PLUGINS_DIR_${_build_type_l}}")
# only release has more then one configuration # only release has more then one configuration
if(NOT _plugin_dir) if(NOT _plugin_dir)
set(_all_rel_cfgs RELEASE RELWITHDEBINFO MINSIZEREL) set(_all_rel_cfgs RELEASE RELWITHDEBINFO MINSIZEREL)
list(FIND _all_rel_cfgs ${_build_config} _is_rel_cfg) list(FIND _all_rel_cfgs ${_build_type_l} _is_rel_cfg)
# check if the current configuration is a known release configuration # check if the current configuration is a known release configuration
if(${_is_rel_cfg} GREATER_EQUAL 0) if(${_is_rel_cfg} GREATER_EQUAL 0)
foreach(_rel_cfg IN LISTS _all_rel_cfgs) foreach(_rel_cfg IN LISTS _all_rel_cfgs)