Skip to content

Commit f013ed1

Browse files
authored
Mark mbusd as a pure C project (#109)
Otherwise cmake configuration might fail if there is no C++ compiler: CMake Error at CMakeLists.txt:3 (project): No CMAKE_CXX_COMPILER could be found. Tell CMake where to find the compiler by setting either the environment variable "CXX" or the CMake cache entry CMAKE_CXX_COMPILER to the full path to the compiler, or to the compiler name if it is in the PATH.
1 parent 2c462b7 commit f013ed1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.2)
22

3-
project(mbusd VERSION 0.5.2)
3+
project(mbusd VERSION 0.5.2 LANGUAGES C)
44

55
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/extern_GPL)
66
include(CheckFunctionExists)

0 commit comments

Comments
 (0)