vmime icon indicating copy to clipboard operation
vmime copied to clipboard

fatal error: 'contrib/punycode/punycode.h' file not found

Open ga2k opened this issue 2 years ago • 0 comments

When using the latest vmime code with CMake via FetchContent with

FetchContent_Declare(vmime
        GIT_REPOSITORY          https://github.com/kisli/vmime.git
        GIT_TAG                 c3c6242ed135f9eca805380394791d17b0fc7a63    # v0.9.2
        OVERRIDE_FIND_PACKAGE)
        
FetchContent_MakeAvailable(vmime)

I get the message in the subject.

If I edit the file vmime-src/src/vmime/charsetConverter_idna.cpp and change the includes from

#include "contrib/...."

to

#include "../contrib/..."

it works.

ga2k avatar Feb 18 '24 11:02 ga2k