Rename the client/ directory to the src/ directory

The integrations tests now no longer require rebuilding of the client code as
well
This commit is contained in:
R. Tyler Croy 2011-03-27 10:18:43 -07:00
parent 14b81de527
commit 530b62d8e0
16 changed files with 21 additions and 11 deletions

View File

@ -1,6 +1,7 @@
with "../../memcache";
project Decrementer is
for Source_Dirs use (".", "../../client");
for Source_Dirs use (".");
for Object_Dir use "build";
for Main use ("decrementer.adb");
for Exec_Dir use ".";

View File

@ -1,6 +1,7 @@
with "../../memcache";
project Deleter is
for Source_Dirs use (".", "../../client");
for Source_Dirs use (".");
for Object_Dir use "build";
for Main use ("deleter.adb");
for Exec_Dir use ".";

View File

@ -1,6 +1,7 @@
with "../../memcache";
project Flusher is
for Source_Dirs use (".", "../../client");
for Source_Dirs use (".");
for Object_Dir use "build";
for Main use ("flusher.adb");
for Exec_Dir use ".";

View File

@ -1,6 +1,7 @@
with "../../memcache";
project Getter is
for Source_Dirs use (".", "../../client");
for Source_Dirs use (".");
for Object_Dir use "build";
for Main use ("getter.adb");
for Exec_Dir use ".";

View File

@ -1,6 +1,7 @@
with "../../memcache";
project Incr_Check is
for Source_Dirs use (".", "../../client");
for Source_Dirs use (".");
for Object_Dir use "build";
for Main use ("incr_check.adb");
for Exec_Dir use ".";

View File

@ -1,6 +1,7 @@
with "../../memcache";
project Incrementer is
for Source_Dirs use (".", "../../client");
for Source_Dirs use (".");
for Object_Dir use "build";
for Main use ("incrementer.adb");
for Exec_Dir use ".";

View File

@ -1,6 +1,7 @@
with "../../memcache";
project Setter is
for Source_Dirs use (".", "../../client");
for Source_Dirs use (".");
for Object_Dir use "build";
for Main use ("setter.adb");
for Exec_Dir use ".";

View File

@ -1,6 +1,7 @@
with "../../memcache";
project Stats is
for Source_Dirs use (".", "../../client");
for Source_Dirs use (".");
for Object_Dir use "build";
for Main use ("stats.adb");
for Exec_Dir use ".";

View File

@ -1,6 +1,7 @@
with "../../memcache";
project Tentimes is
for Source_Dirs use (".", "../../client");
for Source_Dirs use (".");
for Object_Dir use "build";
for Main use ("tentimes.adb");
for Exec_Dir use ".";

View File

@ -1,6 +1,7 @@
with "../../memcache";
project Versioner is
for Source_Dirs use (".", "../../client");
for Source_Dirs use (".");
for Object_Dir use "build";
for Main use ("versioner.adb");
for Exec_Dir use ".";

View File

@ -5,7 +5,7 @@ Library project Memcache is
type Mode_Type is ("debug", "release");
Mode : Mode_Type := external ("mode", "debug");
for Source_Dirs use ("client");
for Source_Dirs use ("src");
for Object_Dir use "obj";
for Library_Dir use "build";