8 lines
220 B
CMake
8 lines
220 B
CMake
|
|
# Sets the minimum version of CMake required to build your native library.
|
||
|
|
# This ensures that a certain set of CMake features is available to
|
||
|
|
# your build.
|
||
|
|
|
||
|
|
cmake_minimum_required(VERSION 3.21.1)
|
||
|
|
|
||
|
|
add_subdirectory(app)
|