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

*** empty log message ***

parent 0c43a596
No related branches found
No related tags found
No related merge requests found
...@@ -5,18 +5,19 @@ ...@@ -5,18 +5,19 @@
################################################################## ##################################################################
# Change this if you want to use the MSVC compiler from the bash shell # Change this if you want to use a posix shell (e.g. in cygwin) instead
# (e.g. in cygwin) instead of using the windows cmd shell. (If you # of the windows cmd shell
# don't have all MSVC variables defined you can use this to compile: USE_WINDOWS_CMD_SHELL=1
# 'cmd.exe /c "vcvars32.bat && make"')
USE_CYGWIN_SHELL=0
ifeq (${USE_CYGWIN_SHELL},0) ifeq (${USE_WINDOWS_CMD_SHELL},1)
# Change this to match where the gmsh sources are installed
MAKE="E:/src/gmsh/utils/misc/gmake.exe" MAKE="E:/src/gmsh/utils/misc/gmake.exe"
UNAME=WIN32MSVC UNAME=WIN32MSVC
RM=erase RM=erase
MV=move MV=move
else else
# If you don't have all the MSVC variables defined in your POSIX shell
# you can use this to compile: 'cmd.exe /c "vcvars32.bat && make"'
MAKE=make MAKE=make
UNAME=WIN32 UNAME=WIN32
RM=rm -f RM=rm -f
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment