Missing dependency

Issue #7 resolved
Former user created an issue

Library requires libboost_filesystem-vc120-mt-1_56.lib but it is not included in released binaries.

Comments (3)

  1. Carsten Nielsen

    I tried fixing this; the required library is found in the ..\boost_1_56_0\lib64-msvc-12.0 directory, but including this library spawns a new error, where Visual Studio complains of "unresolved external symbols" (all of which are related to the boost filesystem library it seems). The exact errors are:

    1>BWTA.lib(terrain_analysis.obj) : error LNK2001: unresolved external symbol "void __cdecl boost::filesystem::path_traits::convert(char const *,char const *,class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > &,class std::codecvt<wchar_t,char,int> const &)" (?convert@path_traits@filesystem@boost@@YAXPBD0AAV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@ABV?$codecvt@_WDH@5@@Z)
    1>BWTA.lib(terrain_analysis.obj) : error LNK2001: unresolved external symbol "public: static class std::codecvt<wchar_t,char,int> const & __cdecl boost::filesystem::path::codecvt(void)" (?codecvt@path@filesystem@boost@@SAABV?$codecvt@_WDH@std@@XZ)
    1>BWTA.lib(terrain_analysis.obj) : error LNK2001: unresolved external symbol "class boost::filesystem::file_status __cdecl boost::filesystem::detail::status(class boost::filesystem::path const &,class boost::system::error_code *)" (?status@detail@filesystem@boost@@YA?AVfile_status@23@ABVpath@23@PAVerror_code@system@3@@Z)
    1>BWTA.lib(terrain_analysis.obj) : error LNK2001: unresolved external symbol "bool __cdecl boost::filesystem::detail::create_directories(class boost::filesystem::path const &,class boost::system::error_code *)" (?create_directories@detail@filesystem@boost@@YA_NABVpath@23@PAVerror_code@system@3@@Z)
    

    I'm not sure if i have a separate issue? Does simply including the library fix it for anyone else?

  2. Nicolas Barriga

    I just included the library (the 32bit version I believe) and it works. I was just asking for the library to be included in the released zip file.

  3. Log in to comment