Skip to content
This repository was archived by the owner on Nov 5, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion GCV-3.6.1-T4/src/GCV.pro
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,14 @@ else {
# QGlViewer
QT += xml opengl
INCLUDEPATH += QGLViewer QGLWidget
LIBS += -lQGlViewer2
unix {
LIBS += -lQGLViewer
} else {
LIBS += -lQGlViewer2
}
unix:!macx {
LIBS += -lGLU
}
HEADER += visu3D/Point3D.h visu3D/Line3D.h visu3D/Arc3D.h visu3D/Tools3D.h visu3D/Box3D.h
SOURCES += visu3D/Point3D.cpp visu3D/Line3D.cpp visu3D/Arc3D.cpp visu3D/Tools3D.cpp visu3D/Box3D.cpp

Expand Down
6 changes: 3 additions & 3 deletions GCV-3.6.1-T4/src/visu3D/viewer3D.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

#include "viewer3D.h"
#include <math.h>
#include "point3D.h"
#include "line3D.h"
#include "arc3d.h"
#include "Point3D.h"
#include "Line3D.h"
#include "Arc3D.h"
#include "box3D.h"
#include "version.h"

Expand Down