CMakeLists.txt

Sat, 14 Mar 2020 13:07:02 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 14 Mar 2020 13:07:02 +0100
changeset 47
1ab1f4a8c328
parent 43
70c99c2084dc
child 50
aae0056bc20b
permissions
-rw-r--r--

Version 0.2.2 Changed to use a permanent network and WiFi connection. Removed three mainloop stages. Removed MQTT sequence counter that was not used. Update WiFi rssi status during eacht measure cycle. Changed FreeRTOS schedulng to 500 Hz.

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
47
1ab1f4a8c328 Version 0.2.2 Changed to use a permanent network and WiFi connection. Removed three mainloop stages. Removed MQTT sequence counter that was not used. Update WiFi rssi status during eacht measure cycle. Changed FreeRTOS schedulng to 500 Hz.
Michiel Broek <mbroek@mbse.eu>
parents: 43
diff changeset
5 set(PROJECT_VER "0.2.2")
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
83314e7b1b4a Changed build system to idf.py
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
8 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
83314e7b1b4a Changed build system to idf.py
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
9 project(co2meter)

mercurial