Skip to content
Snippets Groups Projects
Commit 6bebecbd authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

PKG: no dependency check for GDAL python scripts

parent c7127f62
No related branches found
No related tags found
2 merge requests!78Fix installation of GDAL bindings in standalone packages,!38Support GDAL Python binding for release 6.4
......@@ -80,8 +80,12 @@ function(prepare_file_list file_list_result)
"${OTB_BINARY_DIR}/bin/otbgui_TestApplication")
foreach(otb_test_exe ${otb_test_exe_list})
get_filename_component(otb_test_exe_name ${otb_test_exe} NAME)
list(APPEND file_list ${otb_test_exe_name})
# filter .py files
get_filename_component(otb_test_exe_ext ${otb_test_exe} EXT)
if (NOT otb_test_exe_ext STREQUAL ".py")
get_filename_component(otb_test_exe_name ${otb_test_exe} NAME)
list(APPEND file_list ${otb_test_exe_name})
endif()
endforeach()
# special case for msvc: ucrtbase.dll must be explicitly vetted.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment