jamroot.jam 622 B

1234567891011121314151617181920212223242526272829
  1. # Copyright 2006 Ilya Sokolov
  2. #
  3. # Distributed under the Boost Software License, Version 1.0. (See
  4. # accompanying file LICENSE.txt or copy at
  5. # https://www.bfgroup.xyz/b2/LICENSE.txt)
  6. # pch ##########################################################################
  7. import pch ;
  8. cpp-pch pch
  9. : # sources
  10. include/pch.hpp
  11. : # requirements
  12. <include>include
  13. ;
  14. explicit pch ;
  15. # exe ##########################################################################
  16. exe hello_world
  17. : # sources
  18. pch
  19. source/hello_world.cpp
  20. : # requirements
  21. <include>include
  22. : # default build
  23. : # usage requirements
  24. ;