Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Analysis.AlgorithmBehavior/qhull-2012.1/src/qhull-all.pro @ 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: 2.8 KB
Line 
1# -------------------------------------------------
2# qhull-all.pro -- Qt project to build executables and static libraries
3#
4# To build with Qt on mingw
5#   Download Qt SDK, install Perl
6#   /c/qt/2010.05/qt> ./configure -static -platform win32-g++ -fast -no-qt3support
7#
8# To build DevStudio sln and proj files (Qhull ships with cmake derived files)
9# qmake is in Qt's bin directory
10# ../build> qmake -tp vc -r ../src/qhull-all.pro
11# Need to add Build Dependencies, disable rtti, rename targets to qhull.dll, qhull6_p.dll and qhull6_pd.dll
12# -------------------------------------------------
13
14TEMPLATE = subdirs
15CONFIG += ordered
16
17SUBDIRS += libqhull        #shared library
18SUBDIRS += libqhullp       #shared library with qh_QHpointer (libqhull/user.h)
19SUBDIRS += user_eg         #user program linked to libqhull6_p (libqhullp)
20
21SUBDIRS += libqhullstatic  #static library
22SUBDIRS += libqhullstaticp #static library with qh_QHpointer
23SUBDIRS += qhull           #qhull programs linked to libqhullstatic
24SUBDIRS += qconvex
25SUBDIRS += qdelaunay
26SUBDIRS += qhalf
27SUBDIRS += qvoronoi
28SUBDIRS += rbox
29SUBDIRS += user_eg2        #user program linked to libqhull
30SUBDIRS += testqset        #test program for qset.c with mem.c
31
32SUBDIRS += libqhullcpp     #static library for C++ interface with libqhullstaticp
33SUBDIRS += user_eg3        #user program with libqhullcpp and libqhullstaticp
34SUBDIRS += qhulltest       #test program with Qt, libqhullcpp, and libqhullstaticp
35
36OTHER_FILES += Changes.txt
37OTHER_FILES += CMakeLists.txt
38OTHER_FILES += Make-config.sh
39OTHER_FILES += ../Announce.txt
40OTHER_FILES += ../CMakeLists.txt
41OTHER_FILES += ../COPYING.txt
42OTHER_FILES += ../File_id.diz
43OTHER_FILES += ../index.htm
44OTHER_FILES += ../Makefile
45OTHER_FILES += ../README.txt
46OTHER_FILES += ../REGISTER.txt
47OTHER_FILES += ../eg/q_eg
48OTHER_FILES += ../eg/q_egtest
49OTHER_FILES += ../eg/q_test
50OTHER_FILES += ../html/index.htm
51OTHER_FILES += ../html/qconvex.htm
52OTHER_FILES += ../html/qdelau_f.htm
53OTHER_FILES += ../html/qdelaun.htm
54OTHER_FILES += ../html/qhalf.htm
55OTHER_FILES += ../html/qh-code.htm
56OTHER_FILES += ../html/qh-eg.htm
57OTHER_FILES += ../html/qh-faq.htm
58OTHER_FILES += ../html/qh-get.htm
59OTHER_FILES += ../html/qh-impre.htm
60OTHER_FILES += ../html/qh-optc.htm
61OTHER_FILES += ../html/qh-optf.htm
62OTHER_FILES += ../html/qh-optg.htm
63OTHER_FILES += ../html/qh-opto.htm
64OTHER_FILES += ../html/qh-optp.htm
65OTHER_FILES += ../html/qh-optq.htm
66OTHER_FILES += ../html/qh-optt.htm
67OTHER_FILES += ../html/qh-quick.htm
68OTHER_FILES += ../html/qhull.htm
69OTHER_FILES += ../html/qhull.man
70OTHER_FILES += ../html/qhull.txt
71OTHER_FILES += ../html/qhull-cpp.xml
72OTHER_FILES += ../html/qvoron_f.htm
73OTHER_FILES += ../html/qvoronoi.htm
74OTHER_FILES += ../html/rbox.htm
75OTHER_FILES += ../html/rbox.man
76OTHER_FILES += ../html/rbox.txt
Note: See TracBrowser for help on using the repository browser.