Jamfile.v2 697 B

1234567891011121314151617181920212223
  1. # 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. use-project /boost : $(BOOST_ROOT) ;
  8. import openmp : * ;
  9. project
  10. : requirements
  11. <include>..
  12. <define>BOOST_ALL_NO_LIB=1
  13. <library>/boost//timer
  14. [ openmp ]
  15. ;
  16. exe lorenz_ensemble : lorenz_ensemble.cpp ;
  17. exe lorenz_ensemble_simple : lorenz_ensemble_simple.cpp ;
  18. exe lorenz_ensemble_nested : lorenz_ensemble_nested.cpp ;
  19. exe phase_chain : phase_chain.cpp ;
  20. exe phase_chain_omp_state : phase_chain_omp_state.cpp ;