Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] CGAL-vc100-mt-gd-4.0.2.dll is missing.

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] CGAL-vc100-mt-gd-4.0.2.dll is missing.


Chronological Thread 
  • From: "Laurent Rineau (CGAL/GeometryFactory)" <>
  • To:
  • Subject: Re: [cgal-discuss] CGAL-vc100-mt-gd-4.0.2.dll is missing.
  • Date: Mon, 20 Aug 2012 12:43:04 +0200
  • Organization: GeometryFactory

Le lundi 20 août 2012 03:31:26 Zakai a écrit :
> Hello,
>
> I'm trying to compile this code :
>
> #include <iostream>
> #include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
> #include <CGAL/convex_hull_2.h>
>
> typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
> typedef K::Point_2 Point_2;
>
> int main()
> {
> Point_2 points[5] = { Point_2(0,0), Point_2(10,0), Point_2(10,10),
> Point_2(6,5), Point_2(4,1) };
> Point_2 result[5];
>
> Point_2 *ptr = CGAL::convex_hull_2( points, points+5, result );
> std::cout << ptr - result << " points on the convex hull" << std::endl;
> return 0;
> }
>
> When i compile my project ( visual studio 2O1O ), I receive this system
> message error :
> "The program can't start because CGAL-vc100-mt-gd-4.0.2.dll is missing from
> your computer. Try reinstalling the program to fix this problem". I don't
> know what to do because I have this dll in C:\Program Files
> (x86)\CGAL-4.0.2\lib .

This directory should be in the PATH environment variable. Or you need to
copy
the needed .dll in the directory of your binary executables.

--
Laurent Rineau, PhD
R&D Engineer at GeometryFactory http://www.geometryfactory.com/
Release Manager of the CGAL Project http://www.cgal.org/




Archive powered by MHonArc 2.6.18.

Top of Page