cmake: Declare project as a C project

This way cmake won't try to look for a C++ compiler when configuring.
This commit is contained in:
Tom Stellard 2021-08-21 19:26:02 -07:00
parent b554ca8dbc
commit f1eead603e
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ set(CMAKE_LEGACY_CYGWIN_WIN32 0)
set(BYGFOOT_VERSION "2.3.3" CACHE STRING "Bygfoot version suffix")
project("bygfoot")
project("bygfoot" C)
find_package(PkgConfig REQUIRED)
pkg_check_modules(GLIB_PKG glib-2.0)