Skip to content

Change CMake requirements #68

Description

@nikolape

in file app/build.gradle change version string from this

    externalNativeBuild {
        cmake {
            path file('src/main/cpp/CMakeLists.txt')
            version '3.30.3'
        }
    }

to this, version 3.25 is required by raylib.

    externalNativeBuild {
        cmake {
            path file('src/main/cpp/CMakeLists.txt')
            version '3.25.0+'
        }
    }

Whit this change you specify minimum version requirement same as CMakeLists.txt, and you don't need specifically 3.30.3 version of CMake.

I recommend this change because in my linux distribution version 3.30 is not jet available in the apt repository.
I think this is useful change so you just need a newer version of CMake and not the latest one.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions