forked from Vaa3D/v3d_external
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.cmake
254 lines (234 loc) · 7.87 KB
/
build.cmake
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
#!/bin/bash
# 2010-08-07 by Hanchuan Peng
# a convenience script for building the system with cmake
# It will download and build CMake if it's not present,
# then launch the build.
# Run without arguments to see usage.
function download {
if [[ ! -e $2 ]]; then
echo "Downloading $1"
curl -L $1 -o $2
fi
}
shopt -s expand_aliases;
BUILD_HDF5=1
BOOST_MAJOR_VERSION=1_57
BOOST_VERSION=${BOOST_MAJOR_VERSION}_0
CMAKE_MAJOR_VERSION=3.2
CMAKE_MINOR_VERSION=1
CMAKE_VERSION=${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}
CMAKE_ARGS=""
CMAKE_PLATFORM_ARGS=
CMAKE_BUILD="Release"
CMAKE_EXE=""
BUILD_DIR=`pwd`
ROOT_DIR=`pwd`
set -eu
KERNEL=(`uname -s | tr [A-Z] [a-z]`)
ARCH=(`uname -m | tr [A-Z] [a-z]`)
case $KERNEL in
darwin)
OS=macosx
;;
mingw*)
OS=windows
KERNEL=windows
;;
windows-x86_64)
;;
*)
OS=$KERNEL
;;
esac
case $ARCH in
arm*)
ARCH=arm
;;
i386|i486|i586|i686)
ARCH=x86
;;
amd64|x86-64)
ARCH=x86_64
;;
esac
PLATFORM=$OS-$ARCH
echo "Detected platform \"$PLATFORM\""
while [[ $# > 0 ]]; do
case "$1" in
-platform)
shift
PLATFORM="$1"
;;
-h5j)
CMAKE_ARGS+="-DUSE_FFMPEG:BOOL=ON -DUSE_X265:BOOL=ON -DUSE_HDF5:BOOL=ON"
BUILD_HDF5=1
;;
-qt5)
CMAKE_ARGS+=" -DFORCE_QT4:BOOL=OFF"
;;
-16)
CMAKE_ARGS+=" -DHIGH_BIT_DEPTH:BOOL=ON"
;;
-debug)
CMAKE_BUILD="Debug"
;;
install)
OPERATION=install
;;
clean)
OPERATION=clean
;;
clobber)
OPERATION=clobber
;;
*)
BUILD_DIR="$1"
;;
esac
shift
done
echo "Targeting platform \"$PLATFORM\""
echo "Root directory \"$ROOT_DIR\""
if [[ -z ${OPERATION:-} ]]; then
echo "Usage: build.cmake [-platform <name>] [-h5j] [-qt5] [-debug] <install | clean | clobber>"
echo "where possible platform names are: linux-x86, linux-x86_64, macosx-x86_64, windows-x86, windows-x86_64, etc."
echo " -h5j - builds for the Janelia Farm HDF variant. Enables building of FFmpeg, HDF5 and X265(HEVC)"
echo " -qt5 - build with Qt5 (experimental)"
echo " -debug - Generates a debug build (default is release)"
echo " clean - removes the current build for platform"
echo " clobber - cleans, and removes the current cmake directories"
exit 1
fi
boost_prefix=$BUILD_DIR/build_$PLATFORM/v3d_main/common_lib
CMAKE_PLATFORM_ARGS="-DBOOST_ROOT:PATH=$boost_prefix "
if [ $PLATFORM = "windows-x86_64" ]; then
CMAKE_PLATFORM_ARGS+="-DTIFF_INCLUDE_DIR:PATH=$ROOT_DIR/v3d_main/common_lib/include "
CMAKE_PLATFORM_ARGS+="-DTIFF_LIBRARY:PATH=$ROOT_DIR/v3d_main/common_lib/winlib64/libtiff.lib "
CMAKE_PLATFORM_ARGS+="-DFFTW_INCLUDE_DIR:PATH=$ROOT_DIR/v3d_main/common_lib/fftw-3.3.4-dll64 "
CMAKE_PLATFORM_ARGS+="-DFFTW_LIBRARY:PATH=$ROOT_DIR/v3d_main/common_lib/fftw-3.3.4-dll64/libfftw3f-3.lib"
fi
: "${CMAKE_DIR:=""}"
case $OPERATION in
install)
# See if the code is complete
if [[ ! -e v3d_main/terafly/src/terarepo/src ]]; then
echo "Missing the terafly repository. Did you do a git submodule command?"
exit 1
fi
if [[ ! -e $BUILD_DIR/build_$PLATFORM ]]; then
mkdir -p $BUILD_DIR/build_$PLATFORM/v3d_main/common_lib
fi
# See if the CMAKE_DIR is set
if [ ! "$CMAKE_DIR" = "" ]; then
if [[ -e $CMAKE_DIR ]]; then
CMAKE_EXE="$CMAKE_DIR/bin/cmake"
fi
fi
# If CMAKE_EXE is not set, then either find or build cmake
if [ "$CMAKE_EXE" = "" ]; then
if hash cmake 2>/dev/null; then
echo "cmake_minimum_required(VERSION 3.1)" > $BUILD_DIR/build_$PLATFORM/test_cmake_version
set +e
cmake -P $BUILD_DIR/build_$PLATFORM/test_cmake_version &> /dev/null
status=$?
set -e
if [ $status = 0 ]; then
CMAKE_EXE="cmake"
fi
fi
fi
if [ "$CMAKE_EXE" = "" ]; then
if [[ ! -e cmake-$CMAKE_VERSION/bin/cmake ]]; then
if [[ ! -e cmake-$CMAKE_VERSION ]]; then
echo "Downloading cmake"
download http://www.cmake.org/files/v$CMAKE_MAJOR_VERSION/cmake-$CMAKE_VERSION.tar.gz cmake-$CMAKE_VERSION.tar.gz
tar xvzf cmake-$CMAKE_VERSION.tar.gz
fi
cd cmake-$CMAKE_VERSION
./configure --prefix=. -- -DCMAKE_USE_OPENSSL=ON
make
make install
cd ..
fi
CMAKE_EXE="../cmake-$CMAKE_VERSION/bin/cmake"
fi
echo "Using $CMAKE_EXE"
echo $boost_prefix
if [[ ! -e $boost_prefix/include ]]; then
echo "Unpacking Boost"
cd $boost_prefix
if [ $PLATFORM = "windows-x86_64" ]; then
if [[ ! -e boost_$BOOST_VERSION ]]; then
/c/Program\ Files/7-Zip/7z x -y $ROOT_DIR/v3d_main/common_lib/src_packages/boost_$BOOST_VERSION.tar.gz
/c/Program\ Files/7-Zip/7z x -y boost_$BOOST_VERSION.tar
fi
cd boost_$BOOST_VERSION
cmd //c .\\bootstrap.bat -without-libraries=python
cmd //c .\\b2.exe --toolset=msvc-12.0 address-model=64 --prefix=$boost_prefix install
else
tar xzf $ROOT_DIR/v3d_main/common_lib/src_packages/boost_$BOOST_VERSION.tar.gz
cd boost_$BOOST_VERSION
./bootstrap.sh --prefix=$boost_prefix -without-libraries=python
./b2 install
fi
cd ../../../../
fi
if [ $PLATFORM = "windows-x86_64" ]; then
if [[ ! -e $ROOT_DIR/v3d_main/common_lib/include/tiff.h ]]; then
echo "Configuring TIFF headers"
cd $ROOT_DIR/v3d_main/common_lib/build
tar xzf ../src_packages/tiff-4.0.2.tar.gz
cd tiff-4.0.2
nmake Makefile.vc
cp libtiff/tiff.h ../../include
cp libtiff/tiffconf.h ../../include
cp libtiff/tiffio.h ../../include
cp libtiff/tiffio.hxx ../../include
cp libtiff/tiffvers.h ../../include
cp libtiff/libtiff.lib ../../winlib64
cd ../../../..
fi
echo "Unpacking FFTW"
CMAKE_EXE+=" -G \"Visual Studio 12 2013 Win64\""
cd $ROOT_DIR/v3d_main/common_lib
if [[ ! -e fftw-3.3.4-dll64 ]]; then
tar xzf fftw-3.3.4-dll64.tgz
fi
if [[ ! -e ffmpeg-2.5.2-win64 ]]; then
tar xzf ffmpeg-2.5.2-win64.tgz
fi
cd ../../
fi
cd $BUILD_DIR/build_$PLATFORM
echo $CMAKE_EXE -DCMAKE_BUILD_TYPE:STRING=$CMAKE_BUILD $CMAKE_ARGS $CMAKE_PLATFORM_ARGS $ROOT_DIR
eval $CMAKE_EXE -DCMAKE_BUILD_TYPE:STRING=$CMAKE_BUILD $CMAKE_ARGS $CMAKE_PLATFORM_ARGS $ROOT_DIR
if [ $PLATFORM = "windows-x86_64" ]; then
if [ $BUILD_HDF5 = 1 ]; then
echo "Building HDF5"
devenv Vaa3D.sln -project HDF5 -build $CMAKE_BUILD -out hdf5.txt
fi
echo "Building Vaa3D"
devenv Vaa3D.sln -build $CMAKE_BUILD -out all_build.txt
echo "Installing"
devenv Vaa3D.sln -project INSTALL -build $CMAKE_BUILD -out install.txt
echo "Done."
else
make
fi
;;
clean)
echo "Cleaning build_$PLATFORM directories"
if [[ -e $BUILD_DIR/build_$PLATFORM ]]; then
rm -rf $BUILD_DIR/build_$PLATFORM
fi
;;
clobber)
echo "Cleaning cmake directories"
if [[ -e cmake-$CMAKE_VERSION ]]; then
rm -rf cmake-$CMAKE_VERSION
fi
if [[ -e $BUILD_DIR/build_$PLATFORM ]]; then
rm -rf $BUILD_DIR/build_$PLATFORM
fi
;;
esac