cmake: fix build race condition on machine with many cores

This commit is contained in:
Morten Tryfoss 2026-05-28 12:21:33 +02:00 committed by Henning Westerholt
parent 35a3a38e22
commit 0d27659aff

View file

@ -246,10 +246,11 @@ if(XSLTPROC_EXECUTABLE
)
add_custom_target(dbschema_xhttp_pi)
add_dependencies(dbschema_xhttp_pi dbschema_pi_framework_table dbschema_pi_framework_mod)
add_dependencies(dbschema_pi_framework_mod dbschema_pi_framework_table)
add_custom_target(dbschema_xhttp_pi_clean)
add_dependencies(
dbschema_xhttp_pi dbschema_pi_framework_table_clean dbschema_pi_framework_mod_clean
dbschema_xhttp_pi_clean dbschema_pi_framework_table_clean dbschema_pi_framework_mod_clean
)
add_dependencies(dbschema dbschema_pi_framework_table dbschema_pi_framework_mod)