diff --git a/CMakeLists.txt b/CMakeLists.txt index 200b493..7d720e9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,5 @@ cmake_minimum_required(VERSION 2.6) +SET(CMAKE_CXX_FLAGS "-std=c++11" CACHE STRING "" FORCE) include(ReMake) @@ -15,7 +16,6 @@ remake_project( PREFIX seekthermal- INSTALL /usr HEADER_DESTINATION include/seekthermal - EXTRA_CXX_FLAGS -std=c++0x ) remake_component( @@ -31,7 +31,7 @@ remake_doc( ) remake_pack_deb( - DEPENDS libudev0|libudev1 libusb-1.0-0 libboost-chrono[0-9.]* + DEPENDS libudev1 libusb-1.0-0 libboost-chrono[0-9.]* ) remake_pack_deb( COMPONENT utils diff --git a/README.md b/README.md index 2bd18de..ec65edf 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ package repositories of recent Ubuntu releases. To install them, simply use the command ``` -sudo apt-get install doxygen pkg-config +sudo apt-get install doxygen pkg-config cmake libboost-dev libboost-chrono-dev libusb-1.0-0-dev libudev-dev libqt4-dev ``` #### Building with CMake diff --git a/src/lib/seekthermal/models/aaa/usb/configreceive.cpp b/src/lib/seekthermal/models/aaa/usb/configreceive.cpp index cd7985b..afb0545 100644 --- a/src/lib/seekthermal/models/aaa/usb/configreceive.cpp +++ b/src/lib/seekthermal/models/aaa/usb/configreceive.cpp @@ -19,6 +19,7 @@ ***************************************************************************/ #include "configreceive.h" +#include /*****************************************************************************/ /* Constructors and Destructor */