From 44f160d19d335c3a5641f05e6a1cae1757f202d8 Mon Sep 17 00:00:00 2001 From: Laurent Van Migroet <l.vanmiegroet@ulg.ac.be> Date: Fri, 15 Feb 2008 15:32:59 +0000 Subject: [PATCH] add option variable and libextrelease and libextdebug --- variables.msvc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/variables.msvc b/variables.msvc index f0e95a8187..fbd59e7a70 100644 --- a/variables.msvc +++ b/variables.msvc @@ -10,10 +10,12 @@ HOSTNAME=localhost # The names of the C and C++ compilers CC=cl -CXX=cl /EHsc /nologo /GR /MTd +OPTION=/EHsc /nologo /GR /MT # Add /MLd for single-thread debug mode # /MTd for multi-thread debug mode +CXX=${CC} ${OPTION} + # increase stack size to 16Mb to avoid stack overflows in recursive # tet classification for large 3D Delaunay grids LINKER=cl /F16777216 @@ -45,6 +47,8 @@ DASH=/ # The extension to use for object files, libraries and executables OBJEXT=.obj LIBEXT=.lib +LIBEXTRELEASE=_r.lib +LIBEXTDEBUG=_d.lib EXEEXT=.exe # Installation directories -- GitLab