diff options
author | Andreas Kling <kling@serenityos.org> | 2020-12-30 03:20:06 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-12-30 03:20:06 +0100 |
commit | 7c0e43eb3db2635e2da45bbd6f55eadd18491547 (patch) | |
tree | b773d41ddd594df62048eeab889432353307772c | |
parent | a331a39a996b034baa8fa3336cde76916c2cd91e (diff) | |
download | serenity-7c0e43eb3db2635e2da45bbd6f55eadd18491547.zip |
CrashDaemon: Move from Applications to Services
-rw-r--r-- | Applications/CMakeLists.txt | 1 | ||||
-rw-r--r-- | Services/CMakeLists.txt | 1 | ||||
-rw-r--r-- | Services/CrashDaemon/CMakeLists.txt (renamed from Applications/CrashDaemon/CMakeLists.txt) | 0 | ||||
-rw-r--r-- | Services/CrashDaemon/main.cpp (renamed from Applications/CrashDaemon/main.cpp) | 0 |
4 files changed, 1 insertions, 1 deletions
diff --git a/Applications/CMakeLists.txt b/Applications/CMakeLists.txt index 76d2ae304e..3cac484069 100644 --- a/Applications/CMakeLists.txt +++ b/Applications/CMakeLists.txt @@ -2,7 +2,6 @@ add_subdirectory(About) add_subdirectory(Browser) add_subdirectory(Calculator) add_subdirectory(Calendar) -add_subdirectory(CrashDaemon) add_subdirectory(CrashReporter) add_subdirectory(Debugger) add_subdirectory(DisplaySettings) diff --git a/Services/CMakeLists.txt b/Services/CMakeLists.txt index 087cac6728..26003a7d55 100644 --- a/Services/CMakeLists.txt +++ b/Services/CMakeLists.txt @@ -1,6 +1,7 @@ add_subdirectory(AudioServer) add_subdirectory(ChessEngine) add_subdirectory(Clipboard) +add_subdirectory(CrashDaemon) add_subdirectory(DHCPClient) add_subdirectory(EchoServer) add_subdirectory(ImageDecoder) diff --git a/Applications/CrashDaemon/CMakeLists.txt b/Services/CrashDaemon/CMakeLists.txt index 5dcf13aacb..5dcf13aacb 100644 --- a/Applications/CrashDaemon/CMakeLists.txt +++ b/Services/CrashDaemon/CMakeLists.txt diff --git a/Applications/CrashDaemon/main.cpp b/Services/CrashDaemon/main.cpp index 857415bdd6..857415bdd6 100644 --- a/Applications/CrashDaemon/main.cpp +++ b/Services/CrashDaemon/main.cpp |