https://github.com/ialhashim/topo-blend
Revision 923eb0619961ed2984d4860595a667f18b6f6d4c authored by jjcao1231@gmail.com on 11 December 2013, 10:23:38 UTC, committed by jjcao1231@gmail.com on 11 December 2013, 10:23:38 UTC
1 parent 14d6a8a
Raw File
Tip revision: 923eb0619961ed2984d4860595a667f18b6f6d4c authored by jjcao1231@gmail.com on 11 December 2013, 10:23:38 UTC
Finally, a version seems right.
Tip revision: 923eb06
NURBS.pro
include($$[STARLAB])
include($$[SURFACEMESH])
StarlabTemplate(none)

TEMPLATE = lib
CONFIG += staticlib
QT += opengl

# Build flag
CONFIG(debug, debug|release) {
    CFG = debug
} else {
    CFG = release
}

# Library name and destination
TARGET = NURBS
DESTDIR = $$PWD/$$CFG/lib

SOURCES += \
    ParametricSurface.cpp \
    NURBSRectangle.cpp \
    NURBSCurve.cpp \
    BSplineRectangle.cpp \
    BSplineCurve.cpp \
    SingleCurve.cpp \
    Surface.cpp \
    Curve.cpp \
    BSplineBasis.cpp \
    LineSegment.cpp \
    NurbsDraw.cpp

HEADERS += \
    ParametricSurface.h \
    NURBSRectangle.h \
    NURBSCurve.h \
    BSplineRectangle.h \
    BSplineCurve.h \
    SingleCurve.h \
    Surface.h \
    NURBSGlobal.h \
    Curve.h \
    BSplineBasis.h \
    Integrate1.h \
    LineSegment.h \
    NurbsDraw.h
back to top