Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ACS
Public
Teaching materials
LEGOS
Firmware
Merge requests
!7
Put CMake options in central Cmake File
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Put CMake options in central Cmake File
cmake-unify
into
master
Overview
0
Commits
1
Pipelines
1
Changes
14
Merged
Jonathan Klimt
requested to merge
cmake-unify
into
master
2 years ago
Overview
0
Commits
1
Pipelines
1
Changes
14
Expand
This also enables colored compiler output
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
bff546a9
1 commit,
2 years ago
14 files
+
18
−
104
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
branch/CMakeLists.txt
+
1
−
8
Options
# For more information about build system see
# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html
# The following five 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
(
EXTRA_COMPONENT_DIRS ../components
)
include
(
$ENV{IDF_PATH}/tools/cmake/project.cmake
)
include
(
../LEGOS.cmake
)
project
(
branch
)
Loading