Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for modular build structure. #143

Merged
merged 11 commits into from
Aug 20, 2024
11 changes: 0 additions & 11 deletions Jamfile

This file was deleted.

13 changes: 13 additions & 0 deletions build.jam
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright René Ferdinand Rivera Morell 2024
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)

require-b2 5.2 ;

project /boost/docca
;

explicit
[ alias all : example test ]
;
3 changes: 2 additions & 1 deletion example/Jamfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
project json/doc ;

import boostbook ;
import ../../../tools/docca/docca.jam ;
import-search /boost/docca ;
import docca ;


# Produce the reference.qbk from C++ sources
Expand Down