summaryrefslogtreecommitdiff
path: root/Libraries/LibProtocol/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-11-24 13:20:44 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-11-24 13:22:01 +0100
commit653e61d9cfaf8bf3986361f2f27bae1f8d07405f (patch)
tree5796d19927d0cce39cc9eac160858adf4ac35c23 /Libraries/LibProtocol/Makefile
parent3dc87be8917d9f4d16cc1f737b652ed2cf58c3fa (diff)
downloadserenity-653e61d9cfaf8bf3986361f2f27bae1f8d07405f.zip
LibProtocol: Add a Download object so users don't have to manage ID's
LibProtocol::Client::start_download() now gives you a Download object with convenient hooks (on_finish & on_progress). Also, the IPC handshake is snuck into the Client constructor, so you don't need to perform it after instantiating a Client. This makes using LibProtocol much more pleasant. :^)
Diffstat (limited to 'Libraries/LibProtocol/Makefile')
-rw-r--r--Libraries/LibProtocol/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibProtocol/Makefile b/Libraries/LibProtocol/Makefile
index 16c751bbde..0f34357db9 100644
--- a/Libraries/LibProtocol/Makefile
+++ b/Libraries/LibProtocol/Makefile
@@ -1,6 +1,7 @@
include ../../Makefile.common
OBJS = \
+ Download.o \
Client.o
LIBRARY = libprotocol.a