Jamroot.jam 631 B

12345678910111213141516171819202122232425
  1. # Jamfile.jam
  2. #
  3. # Copyright 2012 Steven Watanabe
  4. #
  5. # Distributed under the Boost Software License Version 1.0. (See
  6. # accompanying file LICENSE_1_0.txt or copy at
  7. # http://www.boost.org/LICENSE_1_0.txt)
  8. project /boost/architecture
  9. : requirements
  10. -<conditional>@boostcpp.deduce-address-model
  11. -<conditional>@boostcpp.deduce-architecture
  12. ;
  13. obj 32 : 32.cpp ;
  14. obj 64 : 64.cpp ;
  15. obj arm : arm.cpp ;
  16. obj combined : combined.cpp ;
  17. obj mips1 : mips1.cpp ;
  18. obj power : power.cpp ;
  19. obj riscv : riscv.cpp ;
  20. obj sparc : sparc.cpp ;
  21. obj x86 : x86.cpp ;
  22. obj s390x : s390x.cpp ;