mirror of
https://github.com/espressif/esp32-camera.git
synced 2025-07-15 01:03:46 +08:00

* maint(build): remove legacy GNU Make build system support * maint(example): move the example so that component manager finds it * maint(example): specify component dependency * maint(build): clean up legacy 'register_component' usage * maint(build): specify more fields in component manifest * doc(readme): simplify installation instructions See https://github.com/espressif/esp32-camera/issues/596 * maint(ci): remove tests for EOL versions (v4.1, v4.2) * fix(build): add missing transitive dependency on driver component
8 lines
259 B
CMake
8 lines
259 B
CMake
# The following lines of boilerplate have to be in your project's
|
|
# CMakeLists in this exact order for cmake to work correctly
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
set(COMPONENTS main)
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
project(camera_example)
|