Merge pull request #4251 from mathisloge/cmake_hotfix
[CMake] fix `mapnik_find_plugin_dir`
This commit is contained in:
commit
d96b6843b3
1 changed files with 2 additions and 2 deletions
|
@ -28,11 +28,11 @@ endforeach()
|
|||
|
||||
function(mapnik_find_plugin_dir PLUGIN_DIR)
|
||||
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
|
||||
if(NOT _plugin_dir)
|
||||
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
|
||||
if(${_is_rel_cfg} GREATER_EQUAL 0)
|
||||
foreach(_rel_cfg IN LISTS _all_rel_cfgs)
|
||||
|
|
Loading…
Reference in a new issue