summaryrefslogtreecommitdiff
path: root/Applications/Help
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@serenityos.org>2020-05-06 18:40:06 +0300
committerAndreas Kling <kling@serenityos.org>2020-05-14 20:15:18 +0200
commit450a2a0f9ce2443bc06445ee018c9860d8cd5fc8 (patch)
treec124a612ef259b764855af5e33c39e0d09ad4df2 /Applications/Help
parent49727ffee424d8c0038ce18b91b0bf0ff33b1a4d (diff)
downloadserenity-450a2a0f9ce2443bc06445ee018c9860d8cd5fc8.zip
Build: Switch to CMake :^)
Closes https://github.com/SerenityOS/serenity/issues/2080
Diffstat (limited to 'Applications/Help')
-rw-r--r--Applications/Help/CMakeLists.txt10
-rw-r--r--Applications/Help/Makefile12
2 files changed, 10 insertions, 12 deletions
diff --git a/Applications/Help/CMakeLists.txt b/Applications/Help/CMakeLists.txt
new file mode 100644
index 0000000000..71bed8e51b
--- /dev/null
+++ b/Applications/Help/CMakeLists.txt
@@ -0,0 +1,10 @@
+set(SOURCES
+ History.cpp
+ main.cpp
+ ManualModel.cpp
+ ManualPageNode.cpp
+ ManualSectionNode.cpp
+)
+
+serenity_bin(Help)
+target_link_libraries(Help LibWeb LibMarkdown LibGUI)
diff --git a/Applications/Help/Makefile b/Applications/Help/Makefile
deleted file mode 100644
index d1b1159f5f..0000000000
--- a/Applications/Help/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-OBJS = \
- ManualModel.o \
- ManualSectionNode.o \
- ManualPageNode.o \
- History.o \
- main.o
-
-PROGRAM = Help
-
-LIB_DEPS = GUI Web TextCodec JS Gfx Markdown IPC Protocol Thread Pthread Core
-
-include ../../Makefile.common