From d2267f368aafb48b1e9994e20cc12a7404d9b054 Mon Sep 17 00:00:00 2001 From: Joris Putcuyps Date: Thu, 13 Oct 2022 11:40:53 +0200 Subject: [PATCH] No need to initialize the C-compiler, small speed improvement (#621) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9f248611..95b86b61 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ if(NOT ETL_VERSION) determine_version("version.txt") endif() -project(etl VERSION ${ETL_VERSION}) +project(etl VERSION ${ETL_VERSION} LANGUAGES CXX) option(BUILD_TESTS "Build unit tests" OFF) option(NO_STL "No STL" OFF)