diff options
author | David Robillard <d@drobilla.net> | 2020-11-23 16:17:33 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-23 16:17:33 +0100 |
commit | ff128069c052e28256094837eff5e6a12136bdd1 (patch) | |
tree | 623c833845ec44e8f58d9020dd1eb658d461f2ec /wscript | |
parent | 6b946d3e004c5504c209675f72a7cc430b505cd9 (diff) | |
download | raul-ff128069c052e28256094837eff5e6a12136bdd1.tar.gz raul-ff128069c052e28256094837eff5e6a12136bdd1.tar.bz2 raul-ff128069c052e28256094837eff5e6a12136bdd1.zip |
Fix header installation
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -93,8 +93,7 @@ if sys.platform != 'win32': def build(bld): # Headers includedir = '${INCLUDEDIR}/raul-%s/raul' % RAUL_MAJOR_VERSION - bld.install_files(includedir, bld.path.ant_glob('raul/*.hpp')) - bld.install_files(includedir, bld.path.ant_glob('raul/*.h')) + bld.install_files(includedir, bld.path.ant_glob('include/raul/*.hpp')) # Pkgconfig file pc_libs = '-framework CoreServices' if bld.env.DEST_OS == 'darwin' else '' |