summaryrefslogtreecommitdiffstats
path: root/cmake/install-script.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/install-script.cmake')
-rw-r--r--cmake/install-script.cmake18
1 files changed, 18 insertions, 0 deletions
diff --git a/cmake/install-script.cmake b/cmake/install-script.cmake
new file mode 100644
index 0000000..6bd0c6e
--- /dev/null
+++ b/cmake/install-script.cmake
@@ -0,0 +1,18 @@
+file(
+ RELATIVE_PATH relative_path
+ "/${lnav_INSTALL_CMAKEDIR}"
+ "/${CMAKE_INSTALL_BINDIR}/${lnav_NAME}"
+)
+
+get_filename_component(prefix "${CMAKE_INSTALL_PREFIX}" ABSOLUTE)
+set(config_dir "${prefix}/${lnav_INSTALL_CMAKEDIR}")
+set(config_file "${config_dir}/lnavConfig.cmake")
+
+message(STATUS "Installing: ${config_file}")
+file(WRITE "${config_file}" "\
+set(
+ LNAV_EXECUTABLE
+ \"\${CMAKE_CURRENT_LIST_DIR}/${relative_path}\"
+ CACHE FILEPATH \"Path to the lnav executable\"
+)
+")