diff options
Diffstat (limited to 'congo')
-rw-r--r-- | congo | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ | |||
1 | |||
2 | target( all ) | ||
3 | { | ||
4 | build( congo ); | ||
5 | build( congod ); | ||
6 | } | ||
7 | |||
8 | target( congo ) | ||
9 | { | ||
10 | type = executable; | ||
11 | linker = c++; | ||
12 | |||
13 | uses( src/congo ); | ||
14 | uses( src/congod ); | ||
15 | } | ||
16 | |||