I'm trying to compile usd-qt on Windows (MSVC 2015) using:
boost 1.70.0
TBB 2017.6
USD 21.05
I'm using a static version of boost, I patched it using:
set(Boost_USE_STATIC_LIBS ON)
and I'm linking it explicitly using link_directories(${Boost_LIBRARIES})
but I'm getting some cryptic linker errors at the end of the process:
I think I got it. I had two clashing builds of boost library installed on my machine and appended to the system path. Leaving a single version of the library fixed the issue. Closing.
Hi,
I'm trying to compile usd-qt on Windows (MSVC 2015) using:
I'm using a static version of boost, I patched it using:
set(Boost_USE_STATIC_LIBS ON)
and I'm linking it explicitly usinglink_directories(${Boost_LIBRARIES})
but I'm getting some cryptic linker errors at the end of the process:
Am I missing something?