mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 11:40:06 +02:00
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
From e9c09710fa476be5689a84eae22132fbb447f26d Mon Sep 17 00:00:00 2001
|
|
From: Luc Schrijvers <begasus@gmail.com>
|
|
Date: Wed, 24 Dec 2025 16:46:36 +0100
|
|
Subject: Fix installation path for headers
|
|
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 9df3193..e27fc33 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -125,7 +125,7 @@ install(FILES
|
|
sketcherMinimizerResidueInteraction.h
|
|
sketcherMinimizerRing.h
|
|
sketcherMinimizerStretchInteraction.h
|
|
- DESTINATION include/coordgen)
|
|
+ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/coordgen)
|
|
|
|
install(EXPORT coordgen-targets
|
|
FILE ${PROJECT_NAME}-config.cmake
|
|
--
|
|
2.52.0
|
|
|
|
|
|
From 27acbc81770aea7185f75ca415c121d64545a1cd Mon Sep 17 00:00:00 2001
|
|
From: Luc Schrijvers <begasus@gmail.com>
|
|
Date: Wed, 24 Dec 2025 17:51:59 +0100
|
|
Subject: Fix cmake destination path
|
|
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index e27fc33..8a00ad3 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -129,7 +129,7 @@ install(FILES
|
|
|
|
install(EXPORT coordgen-targets
|
|
FILE ${PROJECT_NAME}-config.cmake
|
|
- DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake)
|
|
+ DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/coordgen)
|
|
|
|
# Example
|
|
if(COORDGEN_BUILD_EXAMPLE)
|
|
--
|
|
2.52.0
|
|
|