This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # apt-get installed deps | |
| sudo apt-get install gcc-4.6 python3.2-dev libbz2-dev libmysqlclient-dev libgtest-dev google-mock libgoogle-glog-dev libtbb-dev libglm-dev libboost-all-dev git-core unzip cmake | |
| # mysql connector cpp | |
| git clone https://github.com/anhstudios/mysql-connector-cpp.git | |
| cd mysql-connector-cpp | |
| cmake . | |
| make | |
| sudo make install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Get the directory this file is in (the project base) | |
| basedir=$(cd $(dirname $0) && pwd) | |
| mysql=mysql # mysql executable | |
| username= # mysql user | |
| passwd= # mysql password | |
| # parse the command line parameters |