Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Analysis.AlgorithmBehavior/qhull-2012.1/src/qhull-app-cpp.pri @ 10207

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
5include(qhull-warn.pri)
6
7DESTDIR = ../../bin
8TEMPLATE = app
9CONFIG += console warn_on
10CONFIG -= rtti
11LIBS += -L../../lib
12build_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}
21win32-msvc* : QMAKE_LFLAGS += /INCREMENTAL:NO
22
23DEFINES += qh_QHpointer # libqhull/user.h
24
25INCLUDEPATH += ../libqhullcpp
26INCLUDEPATH += ../../src # "libqhull/qhull_a.h"
Note: See TracBrowser for help on using the repository browser.