Guest User

Untitled

a guest
Jul 12th, 2016
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. # File user-config.jam
  2. # Describes build tools and libraries on your system.
  3. #
  4. # 1. Copy this file, "doc/user-config.jam", to your HOME folder.
  5. # On MS Windows, HOME folder is usually
  6. # "C:\Documents and Settings\your_user_name".
  7. #
  8. # 2. Uncomment lines for the compilers and other tools that you are going to use.
  9. #
  10. # 3. For each library, make sure it is available on the system,
  11. # uncomment "constant" statement, and specify its full path and version.
  12. #
  13. # IMPORTANT: Use forward slashes '/'.
  14. # IMPORTANT: Put spaces around colons and before semicolons.
  15. #
  16. # See also:
  17. # http://www.boost.org/boost-build2/doc/html/bbv2/overview/configuration.html
  18. # http://www.boost.org/boost-build2/doc/html/bbv2/reference/tools.html
  19.  
  20. ################################################################################
  21. ## Compilers and other tools
  22.  
  23. ## Microsoft Visual C++
  24. # using msvc ;
  25.  
  26. ## GCC (under Linux of MS Windows MinGW)
  27. using gcc ;
  28.  
  29. ## http://llvm.org/
  30. # using clang ;
  31.  
  32. ## Mac OS X
  33. # using darwin ;
  34.  
  35. ## Python (for generating python bindings)
  36. ## For more details see
  37. ## http://www.boost.org/doc/libs/release/libs/python/doc/building.html
  38. ## Alternatives:
  39. # using python ;
  40. # using python : 2.7 : /usr/bin/python ;
  41. # using python : 2.7 : "C:/Program Files/Python" ;
  42. using python : 2.7 : "C:/Python27" ;
  43.  
  44. ## Doxygen (generating documentation from source code, optional)
  45. ## http://www.stack.nl/~dimitri/doxygen/
  46. ## Specifying Doxygen location may be required. For example
  47. ## using doxygen : "c:/Program Files/doxygen/bin/doxygen.exe" ;
  48. using doxygen : "C:/Program Files/doxygen/bin/doxygen.exe" ;
  49. # using doxygen ;
  50.  
  51. ## Path for GIT client executable (optional)
  52. ## http://git-scm.com/
  53. # path-constant GIT_PATH : "c:/Program Files (x86)/Git/bin/git.exe" ;
  54.  
  55. ################################################################################
  56. ## Libraries
  57. ## Uncomment "constant" statements and provide correct paths and versions.
  58.  
  59.  
  60. local utils = "E:/PhD Project Code/OWLCPP-Git"
  61.  
  62. ## Boost library source
  63. ## http://www.boost.org/
  64. # constant BOOST : "$(utils)/boost_1_53_0/" 1.53.0 ;
  65. constant BOOST : "C:/Program Files/boost/boost_1_61_0_2/boost_1_61_0" 1.61.0 ;
  66.  
  67. ## libxml2 library source
  68. ## http://xmlsoft.org/
  69. # constant LIBXML2 : "$(utils)/libxml2-2.9.0" 2.9.0 ;
  70. constant LIBXML2 : "$(utils)/libxml2-2.7.8" 2.7.8 ;
  71.  
  72. ## pre-built iconv library (required under MS Windows)
  73. ## http://www.zlatkovic.com/libxml.en.html
  74. #constant ICONV : "$(utils)/cpp/iconv-1.9.2.win32" 1.9.2 ;
  75. #constant ICONV : "$(utils)/cpp/libiconv-1.9.1.win32" 1.9.1 ;
  76. constant ICONV : "$(utils)/cpp/iconv-1.9.2.win32" 1.9.2 ;
  77.  
  78.  
  79. ## Raptor library source
  80. ## http://librdf.org/raptor/
  81. constant RAPTOR : "$(utils)/raptor2-2.0.15" 2.0.15 ;
  82.  
  83. ## FaCT++ library source
  84. ## http://code.google.com/p/factplusplus/
  85. constant FACTPP : "$(utils)/FaCTpp-win-v1.6.1" 1.6.1 ;
  86.  
  87. ## owlcpp library source
  88. ## http://sourceforge.net/projects/owl-cpp/
  89. ## (optionally) uncomment this to use owlcpp library in your projects
  90. constant OWLCPP : "$(utils)/owlcpp-v0.3.4" 0.3.4 ;
Advertisement
Add Comment
Please, Sign In to add comment