Last change
on this file since 10207 was
10207,
checked in by ascheibe, 11 years ago
|
#1886 added a unit test for volume calculation and the qhull library
|
File size:
924 bytes
|
Line | |
---|
1 | # -------------------------------------------------
|
---|
2 | # qhull-app-cpp.pri -- Qt include project for static CPP qhull applications using Qt
|
---|
3 | # -------------------------------------------------
|
---|
4 |
|
---|
5 | include(qhull-warn.pri)
|
---|
6 |
|
---|
7 | DESTDIR = ../../bin
|
---|
8 | TEMPLATE = app
|
---|
9 | CONFIG += console warn_on
|
---|
10 | CONFIG -= rtti
|
---|
11 | LIBS += -L../../lib
|
---|
12 | build_pass:CONFIG(debug, debug|release){
|
---|
13 | LIBS += -lqhullcpp_d
|
---|
14 | LIBS += -lqhullstatic_pd # Must be last, otherwise qh_fprintf,etc. are loaded from here instead of qhullcpp-d.lib
|
---|
15 | OBJECTS_DIR = Debug
|
---|
16 | }else:build_pass:CONFIG(release, debug|release){
|
---|
17 | LIBS += -lqhullcpp
|
---|
18 | LIBS += -lqhullstatic_p # Must be last, otherwise qh_fprintf,etc. are loaded from here instead of qhullcpp.lib
|
---|
19 | OBJECTS_DIR = Release
|
---|
20 | }
|
---|
21 | win32-msvc* : QMAKE_LFLAGS += /INCREMENTAL:NO
|
---|
22 |
|
---|
23 | DEFINES += qh_QHpointer # libqhull/user.h
|
---|
24 |
|
---|
25 | INCLUDEPATH += ../libqhullcpp
|
---|
26 | INCLUDEPATH += ../../src # "libqhull/qhull_a.h"
|
---|
Note: See
TracBrowser
for help on using the repository browser.