Fix incorrect Cabal option for -std=c++17 (#4)

`cpp-options` is for the C preprocessor (`-XCPP`). `cxx-options` is for
the C++ compiler.
This commit is contained in:
Evan Relf 2022-07-13 11:57:29 -07:00 committed by GitHub
parent e3a38c77f8
commit 319e70637e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ executable nix-serve
cxx-sources: cbits/nix.cpp
cpp-options: -std=c++17
cxx-options: -std=c++17
build-depends: base < 5
, base16