4 lines
220 B
CMake
4 lines
220 B
CMake
# Use GCC 16 for C++26 contracts support on macOS (Homebrew).
|
|
set(CMAKE_C_COMPILER "/opt/homebrew/bin/gcc-16" CACHE FILEPATH "C compiler")
|
|
set(CMAKE_CXX_COMPILER "/opt/homebrew/bin/g++-16" CACHE FILEPATH "C++ compiler")
|