Skip to content

Commit

Permalink
Fix build on MacOS Monterey (AliceO2Group#1348)
Browse files Browse the repository at this point in the history
Apparently, CMake no longer enables the "C" language by default for some users,
which we need to use some of our dependencies (like LibFFI).
  • Loading branch information
TimoWilken authored Oct 12, 2022
1 parent 9744327 commit f0c08ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cmake_minimum_required(VERSION 3.17 FATAL_ERROR)

project(O2Physics
VERSION 0.0.1
LANGUAGES CXX
LANGUAGES C CXX
DESCRIPTION "Physics Analysis for O2")

set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
Expand Down

0 comments on commit f0c08ab

Please sign in to comment.