Reputation: 29
I have a c++ program that was originally written in Linux. The program uses functions from the library libzip:
I am now working on a windows-based platform in Visual Studio 2017. Everthing works, as I could basically use the same cmake-files as I used on the Linux-platform. However, in Linux I used the package manager to install libzip. I do not have that option in Windows. I somehow need to build a Windows-version for libzip and include the files (header files and lib files) in my CMakeLists.txt file. Can someone help me with a step-by-step guide for this?
Upvotes: 2
Views: 4102
Reputation: 66
Is it possible for you to use the Nuget Package Manager within Visual Studio?
#include "zip.h"
Upvotes: 0