blob: 3bca0b37b86a67a18f00058cc491cca068db6154 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
cxx.std = experimental
cxx.features.symexport = true
# Indicate that our sources do not use #include and module imports do not
# depend on the preprocessor.
#
cxx.preprocessed = modules
using cxx
assert $cxx.features.modules 'c++ compiler does not support modules'
mxx{*}: extension = mxx
cxx{*}: extension = cxx
|