build: Add 'std=c++11' cpp compiler flag
Building the current master branch with g++ 5.4.0-6 fails with: ./src/libcamera/include/log.h:25:34: error: defaulted and deleted functions only available with -std=c++11 \ or -std=gnu++11 [-Werror] LogMessage(const LogMessage&) = delete; Fix this by adding the 'std=c++11' compiler argument for to the list of cpp build flags. Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
parent
6ab3ff4501
commit
3b56ddaa96
1 changed files with 1 additions and 0 deletions
|
@ -17,6 +17,7 @@ common_arguments = [
|
||||||
|
|
||||||
c_arguments = common_arguments
|
c_arguments = common_arguments
|
||||||
cpp_arguments = common_arguments
|
cpp_arguments = common_arguments
|
||||||
|
cpp_arguments += '-std=c++11'
|
||||||
|
|
||||||
add_project_arguments(c_arguments, language: 'c')
|
add_project_arguments(c_arguments, language: 'c')
|
||||||
add_project_arguments(cpp_arguments, language: 'cpp')
|
add_project_arguments(cpp_arguments, language: 'cpp')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue