From: Victor Wagner Date: Wed, 2 Aug 2017 11:21:50 +0000 (+0300) Subject: Specify that project uses only C language, to avoid complaints of CMake if no C+... X-Git-Tag: v3.0.0~436 X-Git-Url: http://www.wagner.pp.ru/gitweb/?a=commitdiff_plain;h=ed61e79a06e8cbbacdccea63baafc2fb409988e4;p=openssl-gost%2Fengine.git Specify that project uses only C language, to avoid complaints of CMake if no C++ compiler exist on the system --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 8731dd2..72fef26 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 2.8) -project(ccgost) +project(ccgost C) if (CMAKE_C_COMPILER_ID MATCHES "Clang") message(STATUS "Using Clang and adding -Qunused-arguments flag")