Skip to content
Snippets Groups Projects
Select Git revision
  • 0bb15586bad052f15d1991ff703d39e01e458986
  • master default protected
  • hierarchical-basis-refactor
  • hierarchical-basis
  • revert-ef4a3a4f
  • patch_releases_4_14
  • overlaps_tags_and_distributed_export
  • overlaps_tags_and_distributed_export_rebased
  • relaying
  • alphashapes
  • steplayer
  • bl
  • pluginMeshQuality
  • fixBugsAmaury
  • new_export_boris
  • oras_vs_osm
  • reassign_partitions
  • distributed_fwi
  • rename-classes
  • fix/fortran-api-example-t4
  • robust_partitions
  • gmsh_4_14_0
  • gmsh_4_13_1
  • gmsh_4_13_0
  • gmsh_4_12_2
  • gmsh_4_12_1
  • gmsh_4_12_0
  • gmsh_4_11_1
  • gmsh_4_11_0
  • gmsh_4_10_5
  • gmsh_4_10_4
  • gmsh_4_10_3
  • gmsh_4_10_2
  • gmsh_4_10_1
  • gmsh_4_10_0
  • gmsh_4_9_5
  • gmsh_4_9_4
  • gmsh_4_9_3
  • gmsh_4_9_2
  • gmsh_4_9_1
  • gmsh_4_9_0
41 results

t5.geo

Blame
  • variables.msvc_minimal 1.55 KiB
    # This is a pre-filled variables file for building a blackbox version
    # of Gmsh with Microsoft Visual C++ (MSVC).
    #
    # This has been tested with MSVC 2003 and MSVC 2008.  See
    # doc/README.msvc for building instructions.
    
    # OS and host
    UNAME=WIN32MSVC
    HOSTNAME=localhost
    
    # The names of the C and C++ compilers
    CC=cl
    CXX=cl /EHsc /nologo /GR /MT
    
    # Use /MLd for single-thread debug mode
    #     /MTd for multi-thread debug mode
    #     /MT for multi-thread release mode
    
    # increase stack size to 16Mb to avoid stack overflows in recursive 
    # tet classification for large 3D Delaunay grids
    LINKER=cl /F16777216
    
    # All compiler flags except optimization flags
    FLAGS=/DWIN32 /D_USE_MATH_DEFINES /DHAVE_NO_DLL /DHAVE_NO_VSNPRINTF /DHAVE_NO_SNPRINTF /DHAVE_NO_SOCKLEN_T /DHAVE_NO_POST
    
    # Additional system includes ($INCLUDE is automatically defined by MSVC when
    # you launch the MSVC command prompt)
    SYSINCLUDE=/I"${INCLUDE}"
    
    # Compiler optimization flags
    OPTIM=/O2
    
    # Gmsh subdirectories
    GMSH_DIRS=Common DataStr Geo Mesh Numeric Parser contrib/NR
    
    # Gmsh libraries
    GMSH_LIBS=Common/Main.obj lib/*.lib
    
    # How you create a static library on this machine
    AR=LIB
    ARFLAGS=/OUT:
    RANLIB=true
    
    # The symbol used in front of compiler flags
    DASH=/
    
    # The extension to use for object files, libraries and executables
    OBJEXT=.obj
    LIBEXT=.lib
    EXEEXT=.exe
    
    # Installation directories
    prefix="S:\Lib\gmsh"
    exec_prefix=${prefix}
    bindir=${exec_prefix}/bin
    datadir=${datarootdir}
    datarootdir=${prefix}/share
    includedir=${prefix}/include
    libdir=${exec_prefix}/lib
    mandir=${datarootdir}/man
    infodir=${datarootdir}/info