Welcome to mirror list, hosted at ThFree Co, Russian Federation.

qhull-all.pro « src « qhull « src « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d3a0ac6f313e5c8607249b620446a767dbea77f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# -------------------------------------------------
# qhull-all.pro -- Qt project to build executables and static libraries
#
# To build with Qt on mingw
#   Download Qt SDK, install Perl
#   /c/qt/2010.05/qt> ./configure -static -platform win32-g++ -fast -no-qt3support
#
# To build DevStudio sln and proj files (Qhull ships with cmake derived files)
# qmake is in Qt's bin directory
# mkdir -p build && cd build && qmake -tp vc -r ../src/qhull-all.pro
# Additional Library Directories -- C:\qt\Qt5.2.0\5.2.0\msvc2012_64\lib
# libqhullcpp and libqhullstatic refered to $(QTDIR) but apparently didn't retrieve (should be %QTDIR%?)
# libqhull_r also needs ..\..\lib
# Need to change build/x64/Debug/*.lib to lib/ (or copy libs by hand, each time)
# Additional Build Dependencies
# See README.txt -- Need to add Build Dependencies, disable rtti, rename targets to qhull.dll, qhull6_p.dll and qhull6_pd.dll
# -------------------------------------------------

TEMPLATE = subdirs
CONFIG += ordered

SUBDIRS += libqhull_r      #shared library with reentrant code
SUBDIRS += libqhullstatic  #static library
SUBDIRS += libqhullstatic_r #static library with reentrant code
SUBDIRS += libqhullcpp     #static library for C++ interface with libqhullstatic_r

SUBDIRS += qhull           #qhull program linked to libqhullstatic_r
SUBDIRS += rbox         
SUBDIRS += qconvex         #qhull programs linked to libqhullstatic
SUBDIRS += qdelaunay
SUBDIRS += qhalf
SUBDIRS += qvoronoi

SUBDIRS += user_eg         #user programs linked to libqhull_r
SUBDIRS += user_eg2  
SUBDIRS += user_eg3        #user program with libqhullcpp and libqhullstatic_r

SUBDIRS += qhulltest       #C++ test program with Qt, libqhullcpp, and libqhullstatic_r
SUBDIRS += testqset        #test program for qset.c with mem.c
SUBDIRS += testqset_r      #test program for qset_r.c with mem_r.c
                           #See eg/q_test for qhull tests

OTHER_FILES += Changes.txt
OTHER_FILES += CMakeLists.txt
OTHER_FILES += Make-config.sh
OTHER_FILES += ../Announce.txt
OTHER_FILES += ../CMakeLists.txt
OTHER_FILES += ../COPYING.txt
OTHER_FILES += ../File_id.diz
OTHER_FILES += ../index.htm
OTHER_FILES += ../Makefile
OTHER_FILES += ../README.txt
OTHER_FILES += ../REGISTER.txt
OTHER_FILES += ../eg/q_eg
OTHER_FILES += ../eg/q_egtest
OTHER_FILES += ../eg/q_test
OTHER_FILES += ../html/index.htm
OTHER_FILES += ../html/qconvex.htm
OTHER_FILES += ../html/qdelau_f.htm
OTHER_FILES += ../html/qdelaun.htm
OTHER_FILES += ../html/qhalf.htm
OTHER_FILES += ../html/qh-code.htm
OTHER_FILES += ../html/qh-eg.htm
OTHER_FILES += ../html/qh-faq.htm
OTHER_FILES += ../html/qh-get.htm
OTHER_FILES += ../html/qh-impre.htm
OTHER_FILES += ../html/qh-optc.htm
OTHER_FILES += ../html/qh-optf.htm
OTHER_FILES += ../html/qh-optg.htm
OTHER_FILES += ../html/qh-opto.htm
OTHER_FILES += ../html/qh-optp.htm
OTHER_FILES += ../html/qh-optq.htm
OTHER_FILES += ../html/qh-optt.htm
OTHER_FILES += ../html/qh-quick.htm
OTHER_FILES += ../html/qhull.htm
OTHER_FILES += ../html/qhull.man
OTHER_FILES += ../html/qhull.txt
OTHER_FILES += ../html/qhull-cpp.xml
OTHER_FILES += ../html/qvoron_f.htm
OTHER_FILES += ../html/qvoronoi.htm
OTHER_FILES += ../html/rbox.htm
OTHER_FILES += ../html/rbox.man
OTHER_FILES += ../html/rbox.txt
OTHER_FILES += ../src/libqhull/Makefile
OTHER_FILES += ../src/libqhull_r/Makefile
OTHER_FILES += ../src/libqhull_r/qhull_r-exports.def
OTHER_FILES += ../src/qconvex/qconvex_r.c
OTHER_FILES += ../src/qdelaunay/qdelaun_r.c
OTHER_FILES += ../src/qhalf/qhalf_r.c
OTHER_FILES += ../src/qhull/rbox_r.c
OTHER_FILES += ../src/qvoronoi/qvoronoi_r.c
OTHER_FILES += ../src/qhull/unix.c
OTHER_FILES += ../src/user_eg/user_eg.c
OTHER_FILES += ../src/user_eg2/user_eg2.c