mirror of
https://github.com/boostorg/contract.git
synced 2026-02-01 20:32:20 +00:00
20 lines
407 B
Plaintext
20 lines
407 B
Plaintext
|
|
import os ;
|
|
|
|
if ! [ os.environ BOOST_ROOT ]
|
|
{
|
|
exit "Error: Set BOOST_ROOT environment variable to Boost root directory" ;
|
|
}
|
|
local BOOST_ROOT = [ os.environ BOOST_ROOT ] ;
|
|
echo "Using Boost libraries from:" $(BOOST_ROOT) ;
|
|
|
|
use-project boost : $(BOOST_ROOT) ;
|
|
|
|
project
|
|
: requirements
|
|
<include>"./include"
|
|
<include>$(BOOST_ROOT)
|
|
<library-path>$(BOOST_ROOT)/stage/lib
|
|
;
|
|
|