taka-no-me/android-cmake

*find_path* and *find_library* doesn't seem to work

septag opened this issue · 2 comments

I'm trying to use find_path and find_library to find headers and libraries for local files that I built for android. The path is correct but it doesn't find anything.
Here's an example:

set(LIBUV_ROOT_DIR "[Path to libuv local files]")
find_path(LIBUV_INCLUDE_DIR
     NAMES uv.h
     HINTS ${LIBUV_ROOT_DIR}/include
)

LIBUV_INCLUDE_DIR-Not-Found

do these functions work for android-toolchain ?

Thanks, that solved the problem

ran into the same issue/solution.

Why is this even necessary!? According to docs, cmake should continue to search in HINTS/PATHS. It does not seem to do that, without specifying NO_CMAKE_ROOT_PATH.
Bug?