summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-09-03 23:43:56 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-09-03 23:43:56 +0200
commit197582bcf7458cafb571fde7d37ef4415d0d8f4a (patch)
tree8dd07b691dff58cd8f73e087e300caf898b81d52
parentcc3ef5cfbd9bcc00b78cda298c037a0e23d2ff72 (diff)
downloadmad-197582bcf7458cafb571fde7d37ef4415d0d8f4a.tar
mad-197582bcf7458cafb571fde7d37ef4415d0d8f4a.zip
Renamed mad -> madd
There are too many programs called mad...
-rw-r--r--src/CMakeLists.txt4
-rw-r--r--src/Core/CMakeLists.txt2
-rw-r--r--src/madd.conf (renamed from src/mad.conf)0
-rw-r--r--src/madd.cpp (renamed from src/mad.cpp)2
4 files changed, 3 insertions, 5 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index b705a89..cb1ec1e 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -21,8 +21,8 @@ include_directories(${INCLUDES})
add_executable(mad-server mad-server.cpp)
target_link_libraries(mad-server Server Common Net Core)
-add_executable(mad mad.cpp)
-target_link_libraries(mad Daemon Common Net Core)
+add_executable(madd madd.cpp)
+target_link_libraries(madd Daemon Common Net Core)
add_executable(madc madc.cpp)
target_link_libraries(madc Client Common Net Core ${EDITLINE_LIBRARY})
diff --git a/src/Core/CMakeLists.txt b/src/Core/CMakeLists.txt
index 28c0dd5..50e62c8 100644
--- a/src/Core/CMakeLists.txt
+++ b/src/Core/CMakeLists.txt
@@ -17,9 +17,7 @@ mad_library(Core
Configurable.h
Exception.cpp Exception.h
Logger.h
- LoggerBase.h
LogManager.cpp LogManager.h
- RemoteLogger.h
Signals.h
ThreadManager.cpp ThreadManager.h
Tokenizer.cpp Tokenizer.h
diff --git a/src/mad.conf b/src/madd.conf
index 5066efe..5066efe 100644
--- a/src/mad.conf
+++ b/src/madd.conf
diff --git a/src/mad.cpp b/src/madd.cpp
index fbf9a87..0062d01 100644
--- a/src/mad.cpp
+++ b/src/madd.cpp
@@ -37,7 +37,7 @@ using namespace Mad;
int main() {
Daemon::Application application;
- application.getConfigManager()->loadFile("mad.conf");
+ application.getConfigManager()->loadFile("madd.conf");
application.getConfigManager()->finish();
application.getRequestManager()->registerPacketType<Daemon::RequestHandlers::CommandRequestHandler>("Command");