Move to Meson build system

This commit is contained in:
Chris Josten 2021-03-02 01:31:17 +01:00
parent 6db58d07cb
commit ae97f07a41
13 changed files with 132 additions and 33 deletions

View file

@ -14,7 +14,7 @@ import vibe.core.core;
import vibe.core.net;
import vibe.core.task;
import protocol;
import msgpackrpc.protocol;
/**
* MessagePack RPC client

View file

@ -1,3 +1,3 @@
module msgpackrpc;
public import client;
public import server;
public import msgpackrpc.client;
public import msgpackrpc.server;