I am trying to implement Boost and UHD in a windows VS2015. I installed Boost . I downloaded the binary, installed it, build builder with bootstrap.bat then build it with
bjam --build-dir=build-directory --toolset=msvc14.0 address-model=64 --build-type=complete stage
I installed UHD from Ettus uhd_3.10.1.1-release_x64_VS2015.exe
. Then I started my project. I linked all the libraries.
1: VC++ Directories > Executable Directories > ...\UHD\bin ( as an attempt to solve this problem)
2: C/C++ > General> Additional include directories ...\boost_1_63_0; ...\UHD\bin; ...\UHD\include;
3: Linker > General > Additional Library Directories : ...\UHD\lib; ..\boost_1_63_0\stage\lib; ...\boost_1_63_0;
4: Linker > Input > Additional Dependencies > uhd.lib
When I launch my own or example code from GitHub I get an error saying that the code cant be execute because uhd.dll file is missing. If I put the uhd.dll file in the VS project directory I get access violation: 0xC0....05. Has anyone encountered this issue before ?