Advertisement
Guest User

Untitled

a guest
Apr 19th, 2012
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. error: Unable to find file or target named
  2. error: '/boost//filesystem'
  3. error: referred from project at
  4. error: 'Src/Memory'
  5. ----------------
  6. # Src/Memory/Jamfile.v2
  7.  
  8. project
  9. :
  10. requirements
  11. <toolset>msvc:<warnings>all
  12. <toolset>gcc:<warnings>all
  13. <toolset>msvc:<warnings-as-errors>on
  14. <toolset>gcc:<warnings-as-errors>on
  15. <toolset>gcc:<cxxflags>-Wextra
  16. <toolset>gcc:<cxxflags>-pedantic-errors
  17. ;
  18.  
  19. lib user32
  20. :
  21. :
  22. <name>user32
  23. ;
  24.  
  25. lib advapi32
  26. :
  27. :
  28. <name>advapi32
  29. ;
  30.  
  31. lib dbghelp
  32. :
  33. :
  34. <name>dbghelp
  35. ;
  36.  
  37. lib shell32
  38. :
  39. :
  40. <name>shell32
  41. ;
  42.  
  43. lib psapi
  44. :
  45. :
  46. <name>psapi
  47. ;
  48.  
  49. lib imagehlp
  50. :
  51. :
  52. <name>imagehlp
  53. ;
  54.  
  55. lib ole32
  56. :
  57. :
  58. <name>ole32
  59. ;
  60.  
  61. lib Memory
  62. :
  63. [ glob Memory/*.cpp ]
  64. [ glob Memory/PeLib/*.cpp ]
  65. [ glob Memory/Detail/*.cpp ]
  66. [ glob Memory/PeLib/Detail/*.cpp ]
  67. [ glob Memory/Experimental/*.cpp ]
  68. /Dependencies//AsmJit
  69. /Dependencies//BeaEngine
  70. /boost//filesystem/<link>static
  71. /boost//thread/<link>static
  72. /boost//date_time/<link>static
  73. user32
  74. advapi32
  75. dbghelp
  76. shell32
  77. psapi
  78. imagehlp
  79. ole32
  80. :
  81. <link>static
  82. <include>"../../Include/Memory"
  83. :
  84. :
  85. <include>"../../Include/Memory"
  86. ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement