赏心悦目
赏心悦目

Reputation: 1601

how can i find cmake to download for android studio

i want to use cmake which version is 14.0,but i can not find this version in android sdk managerenter image description here

i go to the cmake official website,and i find some cmake to download, like this: https://github.com/Kitware/CMake/releases/tag/v3.14.0 but i cannot find android.toolchain.cmake script in theses version's cmake.

Is there some place to find 14.0 version cmake for android or am i misunderstand how to use it?

thanks advance~

Upvotes: 0

Views: 253

Answers (1)

Guillaume Racicot
Guillaume Racicot

Reputation: 41840

If you want the latest CMake, then you should use the official distribution of CMake.

There is no such thing as "CMake for android"

The android.toolchain.cmake file you're talking about is actually shipped inside the NDK

Installing the NDK should be enough to have required CMake android configuration files.

As I can see from the screenshot, your NDK is not installed.

Upvotes: 1

Related Questions