Skip to Content.
Sympa Menu

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

Subject: CGAL users discussion list

List archive

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


Chronological Thread 
  • From: Zakai <>
  • To:
  • Subject: [cgal-discuss] CGAL-vc100-mt-gd-4.0.2.dll is missing.
  • Date: Mon, 20 Aug 2012 03:31:26 -0700 (PDT)

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 .



--
View this message in context:
http://cgal-discuss.949826.n4.nabble.com/CGAL-vc100-mt-gd-4-0-2-dll-is-missing-tp4655740.html
Sent from the cgal-discuss mailing list archive at Nabble.com.



Archive powered by MHonArc 2.6.18.

Top of Page