-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
30 lines (27 loc) · 1.04 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# .env
#
# This file pre-defines environment variables and is read by `just`.
#
# If needed, you can override the variables defined here when invoking `just`
# by manually setting the variable in the shell environment. For example, the
# command below sets `CC` to the gcc compiler:
#
# $ CC=gcc-14 just clean configure build
#
# C compiler to use
#
# Here, we set the compiler to 'clang' to ensure that macOS picks up the
# homebrew version of clang rather than the default XCode clang version.
# That's because, by default, cmake will look for `cc` rather than `clang`,
# and only the XCode clang installation ships with a `cc` binary.
CC=clang
# GCC-compatible compiler (`*_GCC_*) to use when generating code coverage reports
COVERAGE_GCC_MACOS=gcc-14
COVERAGE_GCC_LINUX=gcc
# GCC-compatible gcov (`COVERAGE_GCOV_*) to use when generating code coverage
# reports, must match the corresponding compiler for coverage reports
# (`COVERAGE_GCC_*`)
COVERAGE_GCOV_MACOS=gcov-14
COVERAGE_GCOV_LINUX=gcov
# Docker-related settings
DOCKER_IMAGE_NAME=miguno/helloc