oh, sorry, my bad...
we don't use find_package() or w/e for this, so i missed to look at how it is actually being added!
here is the fix:
https://github.com/winex/mineserver/commit/10088b51c1a2653d65ed60ce632f5c7b70f8d861btw, link_libraries() is deprecated, we're using target_link_libraries()
about includes:
you should setup some directories like *nix systems have by default:
/usr/include and
/usr/libfor development with all your (libs/headers) and specify that to cmake or change Find*.cmake modules to find that.
iirc, there were some environment variables pointing where your libs are located for M$ compilers.
installing dependencies locally for every project isn't a good idea for most uses.
lol @
stdint.h... maybe there is C++ analog and msvc has it? idk.