You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When compiling on Windows 10 using CLion with the CMake files, I got an error in the ZipArchive.hpp because of the _mkdir call. I then added the following with the other #includes and it seemed to fix it.
#ifdef _WIN32
#include <direct.h>
#endif
Thanks for this code. Very nice.
The text was updated successfully, but these errors were encountered:
When compiling on Windows 10 using CLion with the CMake files, I got an error in the ZipArchive.hpp because of the _mkdir call. I then added the following with the other #includes and it seemed to fix it.
#ifdef _WIN32
#include <direct.h>
#endif
Thanks for this code. Very nice.
The text was updated successfully, but these errors were encountered: