[svn-r23547] Windows plugins will always be "dll"'s.

CMake also uses ";" as a separator - escape it

Tested: windows
This commit is contained in:
Allen Byrne 2013-04-04 10:41:15 -05:00
parent a259cbdda7
commit 12616e370c
2 changed files with 2 additions and 2 deletions

View File

@ -456,7 +456,7 @@ H5PL__find(H5PL_type_t plugin_type, int type_id, char *dir, void **info)
FUNC_ENTER_STATIC
/* Specify a file mask. *.* = We want everything! */
sprintf(service, "%s\/*.*", dir);
sprintf(service, "%s\/*.dll", dir);
if((hFind = FindFirstFile(service, &fdFile)) == INVALID_HANDLE_VALUE)
HGOTO_ERROR(H5E_PLUGIN, H5E_OPENERROR, FAIL, "can't open directory")

View File

@ -639,7 +639,7 @@ ADD_TEST (NAME testlibinfo COMMAND ${CMAKE_COMMAND} -D "TEST_PROGRAM=$<TARGET_FI
IF (BUILD_SHARED_LIBS)
IF (WIN32 AND NOT CYGWIN)
SET(CMAKE_SEP ";")
SET(CMAKE_SEP "\;")
ELSE (WIN32 AND NOT CYGWIN)
SET(CMAKE_SEP ":")
ENDIF(WIN32 AND NOT CYGWIN)