blob: cef4f670c3cb8081c8d3e2db8ae1e46b453dd8c4 [file] [log] [blame]
Brian Silverman7c33ab22018-08-04 17:14:51 -07001# Copyright 2011-2013 Mario Mulansky
2# Copyright 2012 Karsten Ahnert
3# Copyright 2013 Pascal Germroth
4# Distributed under the Boost Software License, Version 1.0. (See
5# accompanying file LICENSE_1_0.txt or copy at
6# http://www.boost.org/LICENSE_1_0.txt)
7
8use-project /boost : $(BOOST_ROOT) ;
9import openmp : * ;
10
11project
12 : requirements
13 <include>..
14 <define>BOOST_ALL_NO_LIB=1
15 <library>/boost//timer
16 [ openmp ]
17 ;
18
19exe lorenz_ensemble : lorenz_ensemble.cpp ;
20exe lorenz_ensemble_simple : lorenz_ensemble_simple.cpp ;
21exe lorenz_ensemble_nested : lorenz_ensemble_nested.cpp ;
22exe phase_chain : phase_chain.cpp ;
23exe phase_chain_omp_state : phase_chain_omp_state.cpp ;