Private
Public Access
2
0

CMakeLists.txt: do not require a C++ compiler

By default, CMake assumes both a C and C++ compiler are required.
This is not needed for mraa because it only provides C++ header
files. Note that if using SWIG you need one and if using node.js 3+ you'll need
a C++11 compiler

Signed-off-by: Pieterjan Camerlynck <pieterjan.camerlynck@gmail.com>
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Pieterjan Camerlynck
2016-01-05 19:36:55 +01:00
committed by Brendan Le Foll
parent 6d391ce605
commit a87a104efe
3 changed files with 4 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
cmake_minimum_required (VERSION 2.8)
project (mraa)
project (mraa C)
FIND_PACKAGE (Threads REQUIRED)