Skip to content
Snippets Groups Projects
Commit 58d72453 authored by Simon Praetorius's avatar Simon Praetorius
Browse files

Merge branch 'issue/create_pkg_config_file_only_if_template_exists' into 'master'

Configure a pkg config file only if the template file exists

See merge request !1501
parents 3dfe5805 dddcaa83
No related branches found
No related tags found
1 merge request!1501Configure a pkg config file only if the template file exists
Pipeline #77346 waiting for manual action
......@@ -532,7 +532,9 @@ endif()")
endif()
# install pkg-config files
create_and_install_pkconfig(${DUNE_INSTALL_LIBDIR})
if(EXISTS ${PROJECT_SOURCE_DIR}/${ProjectName}.pc.in)
create_and_install_pkconfig(${DUNE_INSTALL_LIBDIR})
endif()
###########################
### HEADER CONFIG FILEs ###
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment