summaryrefslogtreecommitdiff
path: root/src/cmarkConfig.cmake.in
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2020-01-24 14:09:44 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2020-01-24 17:27:22 -0800
commit242e277a661ec7e51f34dcaf86c1925d550b1498 (patch)
tree24be0e6074bc31673bc5122a42871173743504b8 /src/cmarkConfig.cmake.in
parent14622a194c2f640fb6b6e8edbfe9ec5bf9aecfd1 (diff)
build: substitute the path into the generate files
This resorts to the variable substitution to ensure the path embedded is correct. Without this, the path at the time of the configuration. In the case of the Swift project, this ended up searching in the *source* directory rather than the *build* directory. This will ensure that we export the file to an absolute location and we use the same location in the `cmarkConfig.cmake` file by means of CMake's `configure_file` subsitution.
Diffstat (limited to 'src/cmarkConfig.cmake.in')
-rw-r--r--src/cmarkConfig.cmake.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmarkConfig.cmake.in b/src/cmarkConfig.cmake.in
index 9aae8a9..37884c0 100644
--- a/src/cmarkConfig.cmake.in
+++ b/src/cmarkConfig.cmake.in
@@ -3,5 +3,5 @@ set(HAVE_LIBCMARK_SHARED @CMARK_SHARED@)
if((HAVE_LIBCMARK_STATIC AND NOT TARGET libcmark_static) OR
(HAVE_LIBCMARK_SHARED AND NOT TARGET libcmark))
- include(${CMAKE_CURRENT_LIST_DIR}/cmarkTargets.cmake)
+ include(@CMARK_TARGETS_FILE@)
endif()