I am trying to use xtensor for the first time in Visual Studio 2019 and I get errors like 'cannot open source file "xtl/xsequence.hpp".
The folder 'xtl' is correctly located in the directory. In the file, it is written #include <xtl/xsequence.hpp>
and the error goes away when I change it to #include "xtl/xsequence.hpp"
. I could just change it, but the error happens 73 times throughout the other files. Is there any way to fix with without making 73 separate changes?
Here is what I've done so far:
The original issue that appears many times.
The fix involves changing <> to "".
The location of the xtl
What I've tried to do so far.