Revision 39b13612ebd645a65eda854771b517371f2f858a authored by ennetws on 13 March 2015, 18:17:18 UTC, committed by ennetws on 13 March 2015, 18:17:18 UTC
1 parent c702819
Raw File
ScorerLib.pro
include($$[STARLAB])
include($$[SURFACEMESH])

StarlabTemplate(none)

TEMPLATE = lib
CONFIG += staticlib
QT += opengl xml

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

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


# NURBS library
LIBS += -L$$PWD/../NURBS/$$CFG/lib -lNURBS
INCLUDEPATH += ../NURBS

# TopoBlender library
LIBS += -L$$PWD/../TopoBlenderLib/$$CFG/lib -lTopoBlenderLib
INCLUDEPATH += ../TopoBlenderLib


HEADERS += ./ConnectivityScorer.h \
    ./Geometry.h \
    ./GlobalReflectionSymmScorer.h \
    ./RelationDetector.h \
    ./PairRelationDetector.h \
	./PairRelationScorer.h \
	./GroupRelationDetector.h \
	./GroupRelationScorer.h \
    ./transform3d.h \
    ./ScorerManager.h \
    ./ScorerWidget.h
SOURCES += ./ConnectivityScorer.cpp \
    ./GlobalReflectionSymmScorer.cpp \
    ./RelationDetector.cpp \
    ./PairRelationDetector.cpp \
	./PairRelationScorer.cpp \
	./GroupRelationDetector.cpp \
	./GroupRelationScorer.cpp \
    ./ScorerManager.cpp \
    ./ScorerWidget.cpp \
    ./transform3d.cpp
FORMS += ./ScorerWidget.ui
back to top