From f6816797bba90ce16b1b7fe3d506c69398704b41 Mon Sep 17 00:00:00 2001 From: Noel Eck Date: Mon, 9 May 2016 16:46:45 -0700 Subject: [PATCH] bmp280: CMakeLists header variable name. Missed one instance of module_h for the recent bmp changes. Signed-off-by: Noel Eck --- src/bmp280/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bmp280/CMakeLists.txt b/src/bmp280/CMakeLists.txt index a82dadd8..c7227820 100644 --- a/src/bmp280/CMakeLists.txt +++ b/src/bmp280/CMakeLists.txt @@ -1,5 +1,5 @@ set (libname "bmp280") set (libdescription "Bosch bmp280 Pressure sensor and bme280 humidity sensor") set (module_src ${libname}.cxx bme280.cxx) -set (module_h ${libname}.hpp bme280.hpp) +set (module_hpp ${libname}.hpp bme280.hpp) upm_module_init()