xref: /OK3568_Linux_fs/buildroot/package/ympd/0001-only-c-language.patch (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1ympd is implemented only in C
2
3By default, CMake assumes that the project is using both C and C++. By
4explicitly passing 'C' as argument of the project() macro, we tell
5CMake that only C is used, which prevents CMake from checking if a C++
6compiler exists.
7
8Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9
10Index: b/CMakeLists.txt
11===================================================================
12--- a/CMakeLists.txt
13+++ b/CMakeLists.txt
14@@ -1,6 +1,6 @@
15 cmake_minimum_required(VERSION 2.6)
16
17-project (ympd)
18+project (ympd C)
19 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/cmake/")
20 set(CPACK_PACKAGE_VERSION_MAJOR "1")
21 set(CPACK_PACKAGE_VERSION_MINOR "2")
22