summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraas <andras.horvath@gmail.com>2022-08-16 22:07:19 +0200
committerGitHub <noreply@github.com>2022-08-16 22:07:19 +0200
commit86a38c688aa8e3db67079ac92ab298e498511899 (patch)
tree7b04869daec801a11d62060a07787d275f769ff3
parentd2cd3d36c353fee578f752c4e65a8c1efcee002c (diff)
parent059f67459912bba6d7f605b7c43519ff547f3a80 (diff)
Merge pull request #14 from ffontaine/master
CMakeLists.txt: fix build without C++
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d3d4fcd..3b2cb3e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.10)
-project(mbw VERSION 1.5)
+project(mbw VERSION 1.5 LANGUAGES C)
add_executable(mbw mbw.c)
install(TARGETS mbw DESTINATION bin)