Skip to content

giursino/DomoGu

Repository files navigation

DomoGu

A simple building automation application

Build Status

Building

The project require a working C++11 compiler

mkdir build
cd build 
cmake ..
cmake --build .

Building with test support

If you want to install CppUtest on System Environment please use distribution package, ex: sudo apt-get install libcpputest-dev and then follow building section setting ENABLE_TEST=ON on cmake invocation. Else download latest CppUtest source and install to your local directory and call cmake setting variable CPPUTEST_PATH. Please, follow this example:

# download and install CppUTest
wget https://github.com/cpputest/cpputest/releases/download/v3.8/cpputest-3.8.tar.gz -O /tmp/cpputest.tar.gz
tar -xzvf /tmp/cpputest.tar.gz -C $HOME
cd $HOME/cpputest-* && ./configure --prefix=$HOME/cpputest-build && make && make install && cd -


# build project with test support
cd <project dir>
mkdir build
cd build 
cmake -DENABLE_TEST=ON -DCPPUTEST_PATH=$HOME/cpputest-build ..
cmake --build .

Installing

Follow the build steps and simply execute

sudo make install

About

A simple home automation application

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published