OCC with VC++2008

Hi,

I would like to know how install OpenCascade6.3 with VC++2008. I need a "step by step" tutorial. I´m a C++ beginner user. Somebody help me?

Thanks

Raphael.

Marco Matt's picture

tools
-> options
-> projects & solutions
-> VC++ directories
-> show directories for...
...include files:
add here "C:\OpenCASCADE6.3.0\ros\inc" (modify the path to your occ installation)
...library files:
add here "C:\OpenCASCADE6.3.0\ros\win32\lib" (modify the path to your occ installation)

project
-> properties
-> linker

-> c/c++
-> command line
add here "/DWNT"
-> input
-> additional dependencies
add here all the libs you need. In my case they are:
TKernel.lib
TKGeomBase.lib
TKTopAlgo.lib
TKOffset.lib
TKBool.lib
TKPrim.lib
TKFillet.lib
TKMath.lib
TKService.lib
TKV3d.lib
TKBrep.lib
TKIGES.lib
PTKernel.lib
TKSTL.lib
TKVRML.lib
TKSTEP.lib
TKShapeSchema.lib
TKG3d.lib
TKG2d.lib
TKXSBase.lib
TKPShape.lib
TKShHealing.lib
TKBO.lib
TKVrml.lib
TKStl.lib
TKBRep.lib
TKSTEP209.lib
TKSTEPAttr.lib
TKSTEPBase.lib
FWOSPlugin.lib
TKCAF.lib
TKCDF.lib
TKDraw.lib
TKFeat.lib
TKGeomAlgo.lib
TKHLR.lib
TKPCAF.lib
TKV2d.lib
TKMesh.lib
TKStep.lib

raphfm's picture

Thank you very much Marco!! Now I can start my OCC application.
Raphael