Warning, file /sdk/codevis/thirdparty/soci/scripts/vagrant/devel.sh was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 #!/usr/bin/env bash
0002 # Part of Vagrant virtual development environments for SOCI
0003 
0004 # Installs essentials and core dependencies
0005 # Pre-installation
0006 source /vagrant/scripts/vagrant/common.env
0007 export DEBIAN_FRONTEND="noninteractive"
0008 # Trusty has CMake 2.8, we need CMake 3
0009 sudo apt-get install software-properties-common
0010 sudo add-apt-repository ppa:george-edison55/cmake-3.x
0011 sudo apt-get update -y -q
0012 # Installation
0013 sudo apt-get -o Dpkg::Options::='--force-confnew' -y -q install \
0014   build-essential \
0015   cmake \
0016   firebird2.5-dev \
0017   git \
0018   libboost-dev \
0019   libboost-date-time-dev \
0020   libmyodbc \
0021   libmysqlclient-dev \
0022   libpq-dev \
0023   libsqlite3-dev \
0024   odbc-postgresql \
0025   unixodbc-dev \
0026   valgrind
0027 # Post-installation