diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-16 13:23:16 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-16 13:23:16 +0200 |
commit | f2787b95fb75f2b961dc03c97b14fe07c593df05 (patch) | |
tree | 4f73c7dc453f1a8a922fd673413e0c00cb1d3444 | |
parent | ef9615aebb8a7b504c3b5cd2610e3c8f5bb4de58 (diff) |
Don't install mod{brep}'s headers
-rw-r--r-- | brep/buildfile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/brep/buildfile b/brep/buildfile index f2bfcfe..40ff434 100644 --- a/brep/buildfile +++ b/brep/buildfile @@ -32,10 +32,10 @@ install.include = $install.include/brep # import libs += libstudxml%lib{studxml} -mod{brep}: \ +gen = {hxx ixx cxx}{ options } +src = \ {hxx cxx}{ diagnostics } \ {hxx cxx}{ module } \ - {hxx ixx cxx}{ options } \ {hxx }{ options-types } \ {hxx cxx}{ package-details } \ {hxx cxx}{ package-search } \ @@ -54,7 +54,13 @@ mod{brep}: \ ../web/apache/{hxx ixx cxx}{ request } \ ../web/apache/{hxx txx cxx}{ service } \ ../web/apache/{hxx }{ stream } \ -lib{brep} $libs + +mod{brep}: $gen $src lib{brep} $libs + +# Don't install any of the mod{brep} headers. +# +$out_base/{$gen}: install = false +$src_base/{$src}: install = false # Set option prefix to the empty value to handle all unknown request parameters # uniformly with a single catch block. |