I’m trying to download and set up the xlnt library in Visual Studio Code, but I’ve been struggling for a long time. I’ve checked various resources like YouTube, Google, and even asked ChatGPT, but I still can’t get the library to work.
Initially, I used Git Bash to clone the nlohmann/json library, and it worked perfectly. However, when I tried the same approach with xlnt, it didn’t work. I then tried using vcpkg, but I still faced issues. I also learned that I might need to pair it with CMake, but even that didn’t help.
Here are the steps I’ve taken:
- Cloned the repository using Git Bash: git clone
- https://github.com/tfussell/xlnt
- Attempted to use vcpkg to install xlnt.
- Tried to integrate with CMake following various guides.
Despite all these efforts, I can’t get the xlnt library to work in my project. Can anyone provide a detailed guide or point out what I might be doing wrong? Any help would be greatly appreciated.
5