From 56048f64eefe8599c3f3b1c93cb582af3419dc1f Mon Sep 17 00:00:00 2001 From: William JCM Date: Sat, 23 Apr 2022 21:50:20 +0200 Subject: [PATCH] CMakeLists: explicitly specify it's a C++ project. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d77bb3f..b4e07f0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ # along with this program. If not, see . cmake_minimum_required(VERSION 3.5) -project(MassBuilderSaveTool) +project(MassBuilderSaveTool CXX) set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/modules/" ${CMAKE_MODULE_PATH})