Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. ----src
  2. |
  3. thrid_party---boost_1_50_0----boost
  4. | --- | ----libs
  5. | --- | ---- | --- filesystem
  6. | --- | ---- | --- | ------src
  7.  
  8. cmake_minimum_required( VERSION 2.6 )
  9. project (temp)
  10. #build the third party library
  11. include_directories( ${irisimp_SOURCE_DIR}/../third_party/boost_1_50_0)
  12. set (boost_path
  13. ${irisimp_SOURCE_DIR}/../third_party/boost_1_50_0/libs)
  14.  
  15. set (BOOST_LIST
  16. ${boost_path}/filesystem/src/codecvt_error_category.cpp
  17. ${boost_path}/filesystem/src/operations.cpp
  18. ${boost_path}/filesystem/src/path.cpp
  19. ${boost_path}/filesystem/src/path_traits.cpp
  20. ${boost_path}/filesystem/src/portability.cpp
  21. ${boost_path}/filesystem/src/unique_path.cpp
  22. ${boost_path}/filesystem/src/utf8_codecvt_facet.cpp
  23. ${boost_path}/filesystem/src/windows_file_codecvt.cpp
  24. ${boost_path}/filesystem/src/windows_file_codecvt.hpp
  25. )
  26. add_library ( boost SHARED ${BOOST_LIST})
  27.  
  28. set (BOOST_LIST
  29. ${boost_path}/filesystem/src/codecvt_error_category.cpp;
  30. ${boost_path}/filesystem/src/operations.cpp;
  31. ${boost_path}/filesystem/src/path.cpp;
  32. ${boost_path}/filesystem/src/path_traits.cpp;
  33. ${boost_path}/filesystem/src/portability.cpp;
  34. ${boost_path}/filesystem/src/unique_path.cpp;
  35. ${boost_path}/filesystem/src/utf8_codecvt_facet.cpp;
  36. ${boost_path}/filesystem/src/windows_file_codecvt.cpp;
  37. ${boost_path}/filesystem/src/windows_file_codecvt.hpp;
  38. )
  39.  
  40. add_library(boost SHARED
  41. ${boost_path}/filesystem/src/codecvt_error_category.cpp
  42. ${boost_path}/filesystem/src/operations.cpp
  43. ${boost_path}/filesystem/src/path.cpp
  44. ${boost_path}/filesystem/src/path_traits.cpp
  45. ...
  46. ${boost_path}/filesystem/src/windows_file_codecvt.hpp)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement