summaryrefslogtreecommitdiffstats
path: root/wscript_build.py
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-10-13 21:38:54 +0200
committerwm4 <wm4@nowhere>2014-10-13 23:54:19 +0200
commit1c5dbdbfc20868ba6a305921f23746878ec8b5af (patch)
tree8b95ce8d3b17a584e5a377620e586763ba86696b /wscript_build.py
parentbe0896c173c6a9c651670d3d414a0f5abea764a1 (diff)
downloadmpv-1c5dbdbfc20868ba6a305921f23746878ec8b5af.tar.bz2
mpv-1c5dbdbfc20868ba6a305921f23746878ec8b5af.tar.xz
client API: add qthelper.hpp
This provides some helper functions and classes for C++/Qt. As the top of qthelper.hpp says, this is built on top of the client API, and is a mere helper provided for convenience. Maybe this should be a separate library, but on the other hand I don't see much of a point in that. It's also header-only, but C++ people like such things. This makes it easier for us, because we don't need to care about ABI compatibility. The client API doesn't change, but bump it so that those who are using this header can declare a proper dependency.
Diffstat (limited to 'wscript_build.py')
-rw-r--r--wscript_build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript_build.py b/wscript_build.py
index f7df1c5aad..3f2cc68ffc 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -505,7 +505,7 @@ def build(ctx):
PRIV_LIBS = get_deps(),
)
- headers = ["client.h"]
+ headers = ["client.h", "qthelper.hpp"]
for f in headers:
ctx.install_as(ctx.env.INCDIR + '/mpv/' + f, 'libmpv/' + f)