Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] CGAL linking errors

Subject: CGAL users discussion list

List archive

[cgal-discuss] CGAL linking errors


Chronological Thread 
  • From: Panagiotis Foteinos <>
  • To:
  • Subject: [cgal-discuss] CGAL linking errors
  • Date: Sat, 4 Dec 2010 11:32:17 -0500
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=PrxQ1PJ0AbabDp4TSEqtZe+lU5W1JOaANR2yNHmBWPMOEShoHz5Nx4AOGCI0sTUaTo C8FCmfuIVEm/kJkDS3pCTsC5S2MiZ3rgdHVl7m7flpbgeYcb1cik0gOl1yKktRC4jhcw uNSbeRwaO7Yu67zzDMer3EVZYCv08G9o2KIUg=

Hello users.

I have successfully built CGAL using the Visual Studio 2008 compiler (VC9).

I get the following error:
        LINK : fatal error LNK1104: cannot open file 'CGAL.lib'


I copy my cmakelists file below:

project( TimeSpace )

CMAKE_MINIMUM_REQUIRED(VERSION 2.6)

SET(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)


FIND_PACKAGE(CGAL REQUIRED)
INCLUDE(${CGAL_USE_FILE})

ADD_EXECUTABLE(Delaunay3D main.cxx Mesh.cxx Bbox.cxx My_assertion.cxx Arithmetics.cxx)
TARGET_LINK_LIBRARIES(Delaunay3D CGAL)





Archive powered by MHonArc 2.6.16.

Top of Page