Skip to content

Commit f0c08ab

Browse files
authored
Fix build on MacOS Monterey (#1348)
Apparently, CMake no longer enables the "C" language by default for some users, which we need to use some of our dependencies (like LibFFI).
1 parent 9744327 commit f0c08ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cmake_minimum_required(VERSION 3.17 FATAL_ERROR)
1313

1414
project(O2Physics
1515
VERSION 0.0.1
16-
LANGUAGES CXX
16+
LANGUAGES C CXX
1717
DESCRIPTION "Physics Analysis for O2")
1818

1919
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)

0 commit comments

Comments
 (0)