]> prime8.dev >> repos - ttyd.git/commitdiff
cmake: fix build without C++ (#382)
authorBartosz Biłas <bartosz.bilas@hotmail.com>
Mon, 15 Jun 2020 15:42:32 +0000 (17:42 +0200)
committerGitHub <noreply@github.com>
Mon, 15 Jun 2020 15:42:32 +0000 (23:42 +0800)
Specify that ttyd is a C project to avoid the
following build failure if a C++ compiler isn't found.

CMake Error at CMakeLists.txt:3 (project):
  The CMAKE_CXX_COMPILER:

    /home/bartekk/Projects/buildroots/buildroot-dev/buildroot/output/host/bin/arm-buildroot-linux-uclibcgnueabihf-g++

  is not a full path to an existing compiler tool.

  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.

Signed-off-by: Bartosz Bilas <bartosz.bilas@hotmail.com>
CMakeLists.txt

index 8061f474ae6010040cb9dea875ced54bc3e75658..efd76d2688da5e39899877c36552cf57ea25a13e 100644 (file)
@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 2.8)
 
-project(ttyd)
+project(ttyd C)
 set(PROJECT_VERSION "1.6.0")
 
 find_package(Git)