Skip to content
Snippets Groups Projects
Commit e48fdc01 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

install missing DLLs on Windows

parent 66fba0b9
No related branches found
No related tags found
No related merge requests found
...@@ -1288,7 +1288,15 @@ endif(ENABLE_BUILD_LIB) ...@@ -1288,7 +1288,15 @@ endif(ENABLE_BUILD_LIB)
if(ENABLE_BUILD_SHARED OR ENABLE_BUILD_DYNAMIC) if(ENABLE_BUILD_SHARED OR ENABLE_BUILD_DYNAMIC)
install(TARGETS shared DESTINATION ${GMSH_LIB} OPTIONAL) install(TARGETS shared DESTINATION ${GMSH_LIB} OPTIONAL)
if(WIN32 OR CYGWIN) if(WIN32 OR CYGWIN)
# copy missing dlls # install these DLLs until we figure out how to link them in statically
find_program(GCC_DLL libgcc_s_sjlj-1.dll)
find_program(GFORTRAN_DLL libgfortran-3.dll)
find_program(STDC_DLL libstdc++-6.dll)
if(GCC_DLL AND GFORTRAN_DLL AND STDC_DLL)
message(STATUS "Will install extra DLLs for Windows")
install(FILES ${GCC_DLL} ${GFORTRAN_DLL} ${STDC_DLL}
DESTINATION ${GMSH_LIB} OPTIONAL)
endif(GCC_DLL AND GFORTRAN_DLL AND STDC_DLL)
endif(WIN32 OR CYGWIN) endif(WIN32 OR CYGWIN)
endif(ENABLE_BUILD_SHARED OR ENABLE_BUILD_DYNAMIC) endif(ENABLE_BUILD_SHARED OR ENABLE_BUILD_DYNAMIC)
......
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