mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r23547] Windows plugins will always be "dll"'s.
CMake also uses ";" as a separator - escape it Tested: windows
This commit is contained in:
parent
a259cbdda7
commit
12616e370c
@ -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")
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user