Skip to content
Snippets Groups Projects
Commit 63ae208e authored by Laurent Van Migroet's avatar Laurent Van Migroet
Browse files

*** empty log message ***

parent 15b1202c
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,12 @@ HOSTNAME=localhost ...@@ -8,7 +8,12 @@ HOSTNAME=localhost
# The names of the C and C++ compilers # The names of the C and C++ compilers
CC=cl CC=cl
CXX=cl /EHsc /nologo CXX=cl /EHsc /nologo /GR
#MLd --> Single Thread debug ok?
#MTd--> Multit hread debug
# increase stack size to 16Mb to avoid stack overflows in recursive # increase stack size to 16Mb to avoid stack overflows in recursive
# tet classification for large 3D Delaunay grids # tet classification for large 3D Delaunay grids
...@@ -18,7 +23,9 @@ LINKER=cl /F16777216 ...@@ -18,7 +23,9 @@ LINKER=cl /F16777216
FLAGS=/DWIN32 /D_USE_MATH_DEFINES /DHAVE_NO_DLL /DHAVE_NO_VSNPRINTF /DHAVE_NO_SNPRINTF /DHAVE_NO_SOCKLEN_T /DHAVE_ANN /DHAVE_MATH_EVAL /DHAVE_NETGEN /DHAVE_TETGEN FLAGS=/DWIN32 /D_USE_MATH_DEFINES /DHAVE_NO_DLL /DHAVE_NO_VSNPRINTF /DHAVE_NO_SNPRINTF /DHAVE_NO_SOCKLEN_T /DHAVE_ANN /DHAVE_MATH_EVAL /DHAVE_NETGEN /DHAVE_TETGEN
# Additional system includes # Additional system includes
SYSINCLUDE=/I"C:\Program Files\Microsoft Visual Studio 9.0\VC\INCLUDE" /I"C:\Program Files\Microsoft SDKs\Windows\v6.0A\include" #SYSINCLUDE=/I"C:\Program Files\Microsoft Visual Studio 9.0\VC\INCLUDE" /I"C:\Program Files\Microsoft SDKs\Windows\v6.0A\include"
SYSINCLUDE=/I"C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\INCLUDE" /I"C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\Include"
# Compiler optimization flags # Compiler optimization flags
OPTIM=/O2 OPTIM=/O2
...@@ -43,7 +50,7 @@ LIBEXT=.lib ...@@ -43,7 +50,7 @@ LIBEXT=.lib
EXEEXT=.exe EXEEXT=.exe
# Installation directories # Installation directories
prefix=/usr/local prefix="S:\Lib\gmsh"
exec_prefix=${prefix} exec_prefix=${prefix}
bindir=${exec_prefix}/bin bindir=${exec_prefix}/bin
datadir=${datarootdir} datadir=${datarootdir}
......
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