Does anyone have a working installation of Boost 1.63 on Windows that FindBoost.cmake can be instructed to find?
I tried with both a custom build (for MSMPI mostly) that it failed to find the libraries of, and after reading through FindBoost.cmake, I saw it is dominantly tailored towards the prebuilt binaries (at least on Windows), so I grabbed that, I set BOOSTROOT to the installation root, but it still fails to find Boost::chrono
I got
find_package(Boost 1.63 REQUIRED COMPONENTS chrono)
include_directories(${Boost_INCLUDE_DIRS})
in my top-level CMakeLists.txt file, as all of my targets depend on chrono, and after that I use
target_link_libraries (${declare_trisycl_test_TARGET}
$<$BOOL:USES_OPENCL:${OpenCL_LIBRARIES}>
$<$