CMakeLists.txt

Tue, 03 Oct 2023 17:24:06 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Tue, 03 Oct 2023 17:24:06 +0200
changeset 77
15dc572a7fcb
parent 74
34da2d2b12d5
child 80
715785443a95
permissions
-rw-r--r--

Version 0.3.0. Backported network code from experimental roaming project. Will now connect after reset to the strongest AP. Id the signal level drops below -67, extra scans are done to see for a better AP. Nothing is done yet. Removed config.conf file, all info is taken from the project menu and live tests. Better log the board type and send it via json mqtt. Send bssid and current channel too.

15
83314e7b1b4a Changed build system to idf.py
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
1 # The following lines of boilerplate have to be in your project's CMakeLists
83314e7b1b4a Changed build system to idf.py
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
2 # in this exact order for cmake to work correctly
83314e7b1b4a Changed build system to idf.py
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
3 cmake_minimum_required(VERSION 3.5)
83314e7b1b4a Changed build system to idf.py
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
4
77
15dc572a7fcb Version 0.3.0. Backported network code from experimental roaming project. Will now connect after reset to the strongest AP. Id the signal level drops below -67, extra scans are done to see for a better AP. Nothing is done yet. Removed config.conf file, all info is taken from the project menu and live tests. Better log the board type and send it via json mqtt. Send bssid and current channel too.
Michiel Broek <mbroek@mbse.eu>
parents: 74
diff changeset
5 set(PROJECT_VER "0.3.0")
15
83314e7b1b4a Changed build system to idf.py
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
6 set(PROJECT_NAME "co2meter")
83314e7b1b4a Changed build system to idf.py
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
7
74
34da2d2b12d5 Migrated to isp-idf v5.1
Michiel Broek <mbroek@mbse.eu>
parents: 64
diff changeset
8 set(EXTRA_COMPONENT_DIRS components/esp32-ds18b20 components/esp32-owb components/esp32-rotary-encoder components/u8g2)
15
83314e7b1b4a Changed build system to idf.py
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
9 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
83314e7b1b4a Changed build system to idf.py
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
10 project(co2meter)

mercurial