diff options
author | Manuel Bentele | 2020-10-27 10:08:15 +0100 |
---|---|---|
committer | Manuel Bentele | 2020-10-27 10:10:10 +0100 |
commit | 192046017af6b707d35c0d4eb99a41237499b073 (patch) | |
tree | 0ce15483a456f5738b3a9c417b8c88512077921b /src/fuse | |
parent | Add CMake build requirements check to find libraries and Linux kernel headers (diff) | |
download | dnbd3-192046017af6b707d35c0d4eb99a41237499b073.tar.gz dnbd3-192046017af6b707d35c0d4eb99a41237499b073.tar.xz dnbd3-192046017af6b707d35c0d4eb99a41237499b073.zip |
[BUILD] remove the build requirement for an unused C++ compiler
This patch sets the programming languages of each CMake project to C. With
this change, CMake does not search for an unused C++ compiler anymore.
Diffstat (limited to 'src/fuse')
-rw-r--r-- | src/fuse/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fuse/CMakeLists.txt b/src/fuse/CMakeLists.txt index 4944a87..e0b6e43 100644 --- a/src/fuse/CMakeLists.txt +++ b/src/fuse/CMakeLists.txt @@ -1,7 +1,8 @@ cmake_minimum_required(VERSION 3.10) # set the project name -project(dnbd3-fuse) +project(dnbd3-fuse + LANGUAGES C) # add compile option to enable enhanced POSIX pthread features add_definitions(-D_GNU_SOURCE) |