Skip to content
Snippets Groups Projects
Commit cd9b8809 authored by Robert K's avatar Robert K
Browse files

Merge branch 'bugfix/dunepy-cmake-template' into 'master'

[bugfix][Python] ENABLE_HEADERCHECK cannot be set for dune-py.

See merge request !1371
parents 9438d923 c6d76298
Branches
Tags
1 merge request!1371[bugfix][Python] ENABLE_HEADERCHECK cannot be set for dune-py.
Pipeline #70634 waiting for manual action
......@@ -28,7 +28,8 @@ set({{ mod }}_DIR {{ dir }})
{%- endfor %}
{% for flag, value in cmake_flags.items() -%}
{% if flag != "" %}
# ENABLE_HEADERCHECK cannot be set in dune-py since this will simply not work
{% if flag != "" and flag != "ENABLE_HEADERCHECK" %}
# boolean flags need to be forced to be written to the cache
# otherwise they will be overwritten by the default from dune-common
{% if value == True %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment