-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathREADME
More file actions
29 lines (22 loc) · 728 Bytes
/
README
File metadata and controls
29 lines (22 loc) · 728 Bytes
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
INSTALL
Do this:
$ make
$ ./main help
TOOLS
environment:
g++ (GCC) 4.6.0 PRERELEASE
Linux horus_ 2.6.38-ARCH #1 SMP PREEMPT Fri May 13 07:54:18 UTC 2011 i686 Intel(R) Core(TM)2 Duo CPU T5550 @ 1.8 3GHz GenuineIntel GNU/Linux
boost 1.46.0
GNU Make 3.82
GNU Emacs 23.3.1
deps:
boost 1.46
mysql-connector-c++
mysql:
there has to be a mysql-database named 'AdWorks' and a user
with all privileges for this database and ofc. the user must
be able to connect to the mysql-
example for localhost:
mysql> create database AdWorks;
mysql> grant usage on *.* to adworks_user@localhost identified by 'adworks_users_passwort';
mysql> grant all privileges on AdWorks.* to adworks_user@localhost;