[go: up one dir, main page]

0% found this document useful (0 votes)
61 views1 page

CMake Setup for Hello-Task Project

This 3 line CMakeLists.txt file provides the minimum requirements and includes necessary for a CMake project to build correctly. It specifies CMake version 3.5 is required, includes the IDF project configuration file, and defines the project name as "hello-task".
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
61 views1 page

CMake Setup for Hello-Task Project

This 3 line CMakeLists.txt file provides the minimum requirements and includes necessary for a CMake project to build correctly. It specifies CMake version 3.5 is required, includes the IDF project configuration file, and defines the project name as "hello-task".
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

# 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)

include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(hello-task)

You might also like