Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
4c9c6aa2
Commit
4c9c6aa2
authored
17 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
move the release/debug test in variables.msvc (+ rewrote in a different way)
parent
c082dc85
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+2
-7
2 additions, 7 deletions
Makefile
variables.msvc
+13
-8
13 additions, 8 deletions
variables.msvc
with
15 additions
and
15 deletions
Makefile
+
2
−
7
View file @
4c9c6aa2
# $Id: Makefile,v 1.46
6
2008-02-15
15:33:31 miegroet
Exp $
# $Id: Makefile,v 1.46
7
2008-02-15
20:01:53 geuzaine
Exp $
#
# Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
#
...
...
@@ -84,12 +84,7 @@ install-lib: lib
rm
-f
${
includedir
}
/gmsh/
*
cp
-f
${
GMSH_API
}
${
includedir
}
/gmsh
mkdir
-p
${
libdir
}
ifeq
($(OPTION),/EHsc /nologo /GR /MTd)
cp
-f
bin/libGmsh
${
LIBEXT
}
${
libdir
}
/libGmsh
${
LIBEXTDEBUG
}
endif
ifeq
(${OPTION},/EHsc /nologo /GR /MT)
cp
-f
bin/libGmsh
${
LIBEXT
}
${
libdir
}
/libGmsh
${
LIBEXTRELEASE
}
endif
cp
-f
bin/libGmsh
${
LIBEXT
}
${
libdir
}
/libGmsh
${
LIBSUFFIX
}${
LIBEXT
}
embed
:
@
if
[
-r
../getdp2/contrib/gmsh/Makefile
]
;
then
\
...
...
This diff is collapsed.
Click to expand it.
variables.msvc
+
13
−
8
View file @
4c9c6aa2
# This is a pre-filled variables file for building a blackbox version
# of Gmsh with Microsoft Visual C++ (MSVC).
# of Gmsh with Microsoft Visual C++ (MSVC).
#
# This has been tested with MSVC 2003
.NET
and MSVC 2008.
#
See
doc/README.msvc for building instructions.
# This has been tested with MSVC 2003 and MSVC 2008.
See
# doc/README.msvc for building instructions.
# OS and host
UNAME=WIN32MSVC
...
...
@@ -10,11 +10,18 @@ HOSTNAME=localhost
# The names of the C and C++ compilers
CC=cl
OPTION=/EHsc /nologo /GR /MT
# Add /MLd for single-thread debug mode
CXX=/EHsc /nologo /GR /MT
# Use /MLd for single-thread debug mode
# /MTd for multi-thread debug mode
# /MT for multi-thread release mode
CXX=${CC} ${OPTION}
# append different suffix for release or debug version of library
ifneq (,${findstring MTd,${CXX}})
LIBSUFFIX=_d
else
LIBSUFFIX=_r
endif
# increase stack size to 16Mb to avoid stack overflows in recursive
# tet classification for large 3D Delaunay grids
...
...
@@ -47,8 +54,6 @@ 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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment