You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Copyright (c) 2008-2015, Gilles Caulier, <caulier dot gilles at gmail dot com>
|
|
|
|
#
|
|
|
|
# Redistribution and use is allowed according to the terms of the BSD license.
|
|
|
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
|
|
|
|
|
|
|
# We will work on command line using GNU Make
|
|
|
|
export MAKEFILES_TYPE='Unix Makefiles'
|
|
|
|
|
|
|
|
if [ ! -d "build.cmake" ]; then
|
|
|
|
mkdir build.cmake
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd build.cmake
|
|
|
|
|
|
|
|
cmake -G "$MAKEFILES_TYPE" . \
|
|
|
|
-DCMAKE_BUILD_TYPE=debugfull \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DBUILD_SHARED_LIBS=ON \
|
|
|
|
-DEXIV2_ENABLE_XMP=ON \
|
|
|
|
-DEXIV2_ENABLE_PNG=ON \
|
|
|
|
-DEXIV2_ENABLE_NLS=ON \
|
|
|
|
-DEXIV2_ENABLE_PRINTUCS2=ON \
|
|
|
|
-DEXIV2_ENABLE_LENSDATA=ON \
|
|
|
|
-DEXIV2_ENABLE_COMMERCIAL=OFF \
|
|
|
|
-DEXIV2_ENABLE_BUILD_SAMPLES=ON \
|
|
|
|
-DEXIV2_ENABLE_BUILD_PO=ON \
|
|
|
|
-DEXIV2_ENABLE_VIDEO=ON \
|
|
|
|
-DEXIV2_ENABLE_WEBREADY=ON \
|
|
|
|
-DEXIV2_ENABLE_CURL=ON \
|
|
|
|
-DEXIV2_ENABLE_SSH=ON \
|
|
|
|
-Wno-dev \
|
|
|
|
..
|