diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2019-12-22 12:43:43 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-01-02 22:58:05 -0700 |
commit | 1ff180e23cc38ae82f30615e12b07e98f0794676 (patch) | |
tree | ebebb89e47ad9d1f1418ab91e7646508548745b6 /src | |
parent | b6c73d8b5c23000b1c548a01db4019e0a3a53c02 (diff) |
build: add exports targets for build tree usage
This enables the use of the export targets from the build tree to allow
easy use of the CMark library in other projects.
Resolves: #307
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/cmarkConfig.cmake.in | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index c315bca..321b2b4 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -136,6 +136,10 @@ if(CMARK_SHARED OR CMARK_STATIC) ) install(EXPORT cmark DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake) + + configure_file(cmarkConfig.cmake.in + ${CMAKE_CURRENT_BINARY_DIR}/cmarkConfig.cmake) + export(TARGETS ${CMARK_INSTALL} FILE cmarkTargets.cmake) endif() # Feature tests diff --git a/src/cmarkConfig.cmake.in b/src/cmarkConfig.cmake.in new file mode 100644 index 0000000..fbf5cdf --- /dev/null +++ b/src/cmarkConfig.cmake.in @@ -0,0 +1,7 @@ +set(HAVE_LIBCMARK_STATIC @CMARK_STATIC@) +set(HAVE_LIBCMARK_SHARED @CMARK_SHARED@) + +if((HAVE_LIBCMARK_STATIC AND NOT TARGET libcmark_static) OR + (HAVE_LIBCMARK_SHARED AND NOT TARGET libcmark)) + include(cmarkTargets.cmake) +endif() |