CMakeLists.txt

Thu, 07 Nov 2019 22:58:48 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 07 Nov 2019 22:58:48 +0100
changeset 24
64078aa15512
parent 15
83314e7b1b4a
child 39
c3fcc599a119
permissions
-rw-r--r--

Finished the editor using the rotary switch. Added editing of the MQTT server parameters.

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
83314e7b1b4a Changed build system to idf.py
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
5 set(PROJECT_VER "0.1.0")
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