29 lines
779 B
Diff
29 lines
779 B
Diff
|
From e4ed3e2c3fd5a859567f510deeb49a915d96700f Mon Sep 17 00:00:00 2001
|
||
|
From: Baruch Siach <baruch@tkos.co.il>
|
||
|
Date: Sat, 14 Jan 2017 21:06:25 +0200
|
||
|
Subject: [PATCH] Disable C++ compiler check
|
||
|
|
||
|
jasper does not use C++ code. Allow use of toolchains without C++ support.
|
||
|
|
||
|
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||
|
---
|
||
|
Upstream status: https://github.com/mdadams/jasper/pull/110
|
||
|
CMakeLists.txt | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||
|
index 6c99b3e7df31..3ac166b060ad 100644
|
||
|
--- a/CMakeLists.txt
|
||
|
+++ b/CMakeLists.txt
|
||
|
@@ -1,6 +1,6 @@
|
||
|
cmake_minimum_required (VERSION 2.8.11)
|
||
|
|
||
|
-project(JasPer)
|
||
|
+project(JasPer C)
|
||
|
|
||
|
set(CMAKE_MODULE_PATH
|
||
|
${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/build/cmake/modules/")
|
||
|
--
|
||
|
2.11.0
|
||
|
|