一、TransforMesh

1. CGAL

(http://www.cgal.org/download/windows.html#GeneralPrerequisites)

预装软件

1.1 cmake

1.2 Boost (添加环境变量BOOST_ROOT)

a. download (https://sourceforge.net/projects/boost/files/boost-binaries/)

b. install (c:\dev\libboost_1_59_0)

c. set two environment variables

BOOST_LIBRARYDIR=C:\dev\libboost_1_59_0\lib32-msvc-xx.0

BOOST_INCLUDEDIR=C:\dev\libboost_1_59_0

d. add the path to the Boost dll files in PATH environment variable   (C:\dev\libboost_1_59_0\lib32-msvc-xx.0)

1.3 Qt

a. download (http://www.qt.io/download-open-source/#section-5)

b. add the environment variable QTDIR (C:\Qt\Qt5.5.1)

c. add to the path the bin directory of Qt (C:\Qt\Qt5.5.1\5.5\msvcXXXX_XX\bin)

To avoid any conflict with another dll with the same name from another folder, add this path as the first in the list.

1.4 BLAS (http://icl.cs.utk.edu/lapack-for-windows/lapack/#libraries_mingw)

1.4.1 FORTRAN COMPILE (Intel C and Fortran Compilers)

1.4.2 BLAS

1.5 CGAL

a. install (choose ‘C:\dev\CGAL-4.7’ as installation directory)

b. 步骤

1.1 open cmake-gui

1.2 For both "Where is the source code" and "Where to build the binaries", specify the CGAL Installation folde. I set 'C:\dev\CGAL-4.7' for source and 'C:\dev\CGAL-4.7\build' as binaries

1.3 Configure, Generate

1.4 In the directory 'C:\dev\CGAL-4.7\build', a solution file named CGAL.sln has been created

1.5 Run Visual Studio and compile ALL_BUILD project both in Debug and Release.

1.6 Add to your path the bin directory of the build.  I add to my PATH C:\dev\CGAL-4.7\build\bin

2. CImg

3. CEP

二、MeshDog/MeshHog

MeshDog的更多相关文章

随机推荐

  1. Java—事件和多线程机制

    一  事件 1.1 事件源 图形用户界面上每个可能产生事件的组件称为事件源. 1.2 事件监听者 Java系统中注册的用于接收特殊事件的类.不同的事件对应着不同的监听者,要想事件被监听者监听并处理,则 ...

  2. 使用curl传递cookie错误的问题

    工作中发现一个问题, 通过curl调用接口传递cookie操作用户的数据, 接口的程序解析不了cookie中的数据. 经过排查发现curl发送的cookie数据为 TZ+Gn+rEk+6G4d 而接口 ...

  3. js正则表达式大全(3)

    正则表达式regular expression详述(一) 正则表达式是regular expression,看来英文比中文要好理解多了,就是检查表达式符 不符合规定!!正则表达式有一个功能十分强大而又 ...

  4. [CentOS Server] Bug when calling matlab in bash

    尝试了好几遍,仍然不能用简写命令调用matlab,这里把过程记录如下. (1). 登录 server [She@She ~]$ ssh shecl@xx.xx.xx.xx Last :: from x ...

  5. IOS9 Swift

    Swift 2.0发布:即将开源,支持Linux [日期:2015-06-09] 来源:infoq  作者:Linux [字体:大 中 小]     在6月9日凌晨举行的WWDC 2015全球开发者大 ...

  6. 160个crackme-之Afkayas.1

    工具: OD 环境: windows XP 运行: 我们先运行一下这个小程序,看看它到底是干什么的.运行后发现它要我们输入Type In your Name 和Type In your Serial ...

  7. Codeforces Round #211 (Div. 2) D题(二分,贪心)解题报告

    ---恢复内容开始--- 题目地址 简要题意: n个小伙子一起去买自行车,他们有每个人都带了一些钱,并且有公有的一笔梦想启动资金,可以分配给任何小伙子任何数值,当然分配权在我们的手中.现在给出m辆自行 ...

  8. Bootstrap<基础十一>字体图标(Glyphicons)

    字体图标(Glyphicons),并通过一些实例了解它的使用.Bootstrap 捆绑了 200 多种字体格式的字形. 获取字体图标 我们已经在 环境安装 章节下载了 Bootstrap 3.x 版本 ...

  9. HPL/SQL与CDH5.4.7集成

    1.下载hplsql-0.3.13到本地并解压 2.修改plsql,为如下内容 #!/bin/bash export "HADOOP_CLASSPATH=/opt/cloudera/parc ...

  10. Linux学习 : 自己写bootloader

    一.bootloader 目标:启动内核 基本功能: ①初始化硬件:关看门狗.设置时钟.设置SDRAM.初始化NAND FLASH ②image比较大需要重定位到SDRAM ②将内核从NAND FLA ...