From df891a99d7b098e63ca6910a5bdf424e383ae23d Mon Sep 17 00:00:00 2001 From: void Date: Sat, 21 Nov 2009 15:46:14 +0100 Subject: [PATCH] Changed the directory structure, added a build script --- theodwalha/build.py | 5 +++++ theodwalha/{ => include}/client.hpp | 0 theodwalha/{ => include}/configuration.hpp | 0 theodwalha/{ => include}/module.hpp | 0 theodwalha/{ => include}/module_manager.hpp | 0 theodwalha/{ => include}/reply.hpp | 0 theodwalha/{ => include}/request.hpp | 0 theodwalha/{ => include}/server.hpp | 0 theodwalha/{ => include}/temporary.hpp | 0 theodwalha/{ => source}/client.cpp | 0 theodwalha/{ => source}/configuration.cpp | 0 theodwalha/{ => source}/main.cpp | 0 theodwalha/{ => source}/module.cpp | 0 theodwalha/{ => source}/module_manager.cpp | 0 theodwalha/{ => source}/reply.cpp | 0 theodwalha/{ => source}/request.cpp | 0 theodwalha/{ => source}/server.cpp | 0 theodwalha/{ => source}/temporary.cpp | 0 18 files changed, 5 insertions(+) create mode 100644 theodwalha/build.py rename theodwalha/{ => include}/client.hpp (100%) rename theodwalha/{ => include}/configuration.hpp (100%) rename theodwalha/{ => include}/module.hpp (100%) rename theodwalha/{ => include}/module_manager.hpp (100%) rename theodwalha/{ => include}/reply.hpp (100%) rename theodwalha/{ => include}/request.hpp (100%) rename theodwalha/{ => include}/server.hpp (100%) rename theodwalha/{ => include}/temporary.hpp (100%) rename theodwalha/{ => source}/client.cpp (100%) rename theodwalha/{ => source}/configuration.cpp (100%) rename theodwalha/{ => source}/main.cpp (100%) rename theodwalha/{ => source}/module.cpp (100%) rename theodwalha/{ => source}/module_manager.cpp (100%) rename theodwalha/{ => source}/reply.cpp (100%) rename theodwalha/{ => source}/request.cpp (100%) rename theodwalha/{ => source}/server.cpp (100%) rename theodwalha/{ => source}/temporary.cpp (100%) diff --git a/theodwalha/build.py b/theodwalha/build.py new file mode 100644 index 0000000..450fc23 --- /dev/null +++ b/theodwalha/build.py @@ -0,0 +1,5 @@ +import nil.build + +builder = nil.build.builder('theodwalha') +builder.include('include') +builder.program() diff --git a/theodwalha/client.hpp b/theodwalha/include/client.hpp similarity index 100% rename from theodwalha/client.hpp rename to theodwalha/include/client.hpp diff --git a/theodwalha/configuration.hpp b/theodwalha/include/configuration.hpp similarity index 100% rename from theodwalha/configuration.hpp rename to theodwalha/include/configuration.hpp diff --git a/theodwalha/module.hpp b/theodwalha/include/module.hpp similarity index 100% rename from theodwalha/module.hpp rename to theodwalha/include/module.hpp diff --git a/theodwalha/module_manager.hpp b/theodwalha/include/module_manager.hpp similarity index 100% rename from theodwalha/module_manager.hpp rename to theodwalha/include/module_manager.hpp diff --git a/theodwalha/reply.hpp b/theodwalha/include/reply.hpp similarity index 100% rename from theodwalha/reply.hpp rename to theodwalha/include/reply.hpp diff --git a/theodwalha/request.hpp b/theodwalha/include/request.hpp similarity index 100% rename from theodwalha/request.hpp rename to theodwalha/include/request.hpp diff --git a/theodwalha/server.hpp b/theodwalha/include/server.hpp similarity index 100% rename from theodwalha/server.hpp rename to theodwalha/include/server.hpp diff --git a/theodwalha/temporary.hpp b/theodwalha/include/temporary.hpp similarity index 100% rename from theodwalha/temporary.hpp rename to theodwalha/include/temporary.hpp diff --git a/theodwalha/client.cpp b/theodwalha/source/client.cpp similarity index 100% rename from theodwalha/client.cpp rename to theodwalha/source/client.cpp diff --git a/theodwalha/configuration.cpp b/theodwalha/source/configuration.cpp similarity index 100% rename from theodwalha/configuration.cpp rename to theodwalha/source/configuration.cpp diff --git a/theodwalha/main.cpp b/theodwalha/source/main.cpp similarity index 100% rename from theodwalha/main.cpp rename to theodwalha/source/main.cpp diff --git a/theodwalha/module.cpp b/theodwalha/source/module.cpp similarity index 100% rename from theodwalha/module.cpp rename to theodwalha/source/module.cpp diff --git a/theodwalha/module_manager.cpp b/theodwalha/source/module_manager.cpp similarity index 100% rename from theodwalha/module_manager.cpp rename to theodwalha/source/module_manager.cpp diff --git a/theodwalha/reply.cpp b/theodwalha/source/reply.cpp similarity index 100% rename from theodwalha/reply.cpp rename to theodwalha/source/reply.cpp diff --git a/theodwalha/request.cpp b/theodwalha/source/request.cpp similarity index 100% rename from theodwalha/request.cpp rename to theodwalha/source/request.cpp diff --git a/theodwalha/server.cpp b/theodwalha/source/server.cpp similarity index 100% rename from theodwalha/server.cpp rename to theodwalha/source/server.cpp diff --git a/theodwalha/temporary.cpp b/theodwalha/source/temporary.cpp similarity index 100% rename from theodwalha/temporary.cpp rename to theodwalha/source/temporary.cpp -- 2.11.4.GIT