Skip to content
Snippets Groups Projects
Commit d9c0917d authored by Markus Blatt's avatar Markus Blatt
Browse files

[am2cmake,release] Add directives for CMake package configuration with autotools during conversion

parent b81cd507
No related branches found
No related tags found
No related merge requests found
......@@ -800,6 +800,12 @@ def am_2_cmake_dir(directory):
output.write('\n'.join(['# Create Doxyfile.in and Doxyfile, and doxygen documentation',
'add_doxygen_target()']))
output.close()
# Add directives to create CMake packe configuration files with autotools
output=open("Makefile.am'", "a")
output.write('\n'.join(['', '# Generate package configuration files for finding',
'# installed modules with CMake',
'include $(top_srcdir)/am/cmake-pkg-config\n']))
output.close()
def main():
usage = "usage: am2cmake "
......
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