diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2020-10-20 14:24:48 +0200 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2020-10-24 19:31:15 +0200 |
commit | fc57089bc509e63f9376858f8038b3efb142418a (patch) | |
tree | 95aecb38697dc6ac8ee62654e95ed85ef55a9a53 /tools | |
parent | 1eb9d8ad6e30fb5381e720f50dcda9965e19a399 (diff) | |
download | meson-fc57089bc509e63f9376858f8038b3efb142418a.zip meson-fc57089bc509e63f9376858f8038b3efb142418a.tar.gz meson-fc57089bc509e63f9376858f8038b3efb142418a.tar.bz2 |
cmake: Disable the new (CMake 3.16) PCH support
Subprojects that use the CMake PCH feature will cause
compilation/linker errors. The CMake PCH support
should thus be disabled until this can be properly
translated to meson.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/gen_data.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/gen_data.py b/tools/gen_data.py index 2cc05a4..32a5347 100755 --- a/tools/gen_data.py +++ b/tools/gen_data.py @@ -78,7 +78,8 @@ def main() -> int: #### - from pathlib import Path + # TODO: Remember to remove this also from tools/gen_data.py + from ._pathlib import Path import typing as T if T.TYPE_CHECKING: |