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

add option variable and libextrelease and libextdebug

parent ebd2f6bf
No related branches found
No related tags found
No related merge requests found
...@@ -10,10 +10,12 @@ HOSTNAME=localhost ...@@ -10,10 +10,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 /GR /MTd OPTION=/EHsc /nologo /GR /MT
# Add /MLd for single-thread debug mode # Add /MLd for single-thread debug mode
# /MTd for multi-thread debug mode # /MTd for multi-thread debug mode
CXX=${CC} ${OPTION}
# 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
LINKER=cl /F16777216 LINKER=cl /F16777216
...@@ -45,6 +47,8 @@ DASH=/ ...@@ -45,6 +47,8 @@ DASH=/
# The extension to use for object files, libraries and executables # The extension to use for object files, libraries and executables
OBJEXT=.obj OBJEXT=.obj
LIBEXT=.lib LIBEXT=.lib
LIBEXTRELEASE=_r.lib
LIBEXTDEBUG=_d.lib
EXEEXT=.exe EXEEXT=.exe
# Installation directories # Installation directories
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment