mysmartgrid / hexabus

The HexaBus Project: An IPv6-based home automation bus. We develop both hard- and software for the future of home automation.
http://hexabus.net
49 stars 15 forks source link

Build fails because of typo in hexalog.cpp #232

Closed mweinelt closed 10 years ago

mweinelt commented 10 years ago

`[ 50%] Building CXX object src/CMakeFiles/hexalog.dir/hexalog.cpp.o /home/hexaberry/hexabus/hostsoftware/libhexabus/src/hexalog.cpp:14:37: fatal error: libklio/sensorfactory.hpp: No such file or directory

include <libklio/sensorfactory.hpp>

                                 ^`

should be libklio/sensor-factory.hpp instead.

`diff --git hostsoftware/libhexabus/src/hexalog.cpp hostsoftware/libhexabus/src/hexalog.cpp index 0061cec..c880951 100644 --- hostsoftware/libhexabus/src/hexalog.cpp +++ hostsoftware/libhexabus/src/hexalog.cpp @@ -11,7 +11,7 @@

include <libklio/store.hpp>

include <libklio/store-factory.hpp>

include <libklio/sensor.hpp>

-#include <libklio/sensorfactory.hpp> +#include <libklio/sensor-factory.hpp>

include <boost/uuid/uuid_io.hpp>

include <boost/algorithm/string.hpp>

// commandline parsing.`

ghost commented 10 years ago

The current libklio master cannot be used to build libhexabus master. Use hexabus development instead, or libklio revision mysmartgrid/libklio@cdccba1cd5d663bec6cd8404757b901ad35f56ff.