mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-13 15:20:07 +02:00
34 lines
937 B
Plaintext
34 lines
937 B
Plaintext
From 91f52d24f0be9317d55d43d49e31b7486e4ddda7 Mon Sep 17 00:00:00 2001
|
|
From: Adrien Destugues <pulkomandy@pulkomandy.tk>
|
|
Date: Sat, 30 Jan 2021 14:01:02 +0000
|
|
Subject: Fix include dirs for Haiku.
|
|
|
|
|
|
diff --git a/ftdipp/CMakeLists.txt b/ftdipp/CMakeLists.txt
|
|
index fac5bcc..26b1d83 100644
|
|
--- a/ftdipp/CMakeLists.txt
|
|
+++ b/ftdipp/CMakeLists.txt
|
|
@@ -42,6 +42,6 @@ if ( STATICLIBS )
|
|
endif ()
|
|
|
|
install ( FILES ${cpp_headers}
|
|
- DESTINATION include/${PROJECT_NAME}
|
|
+ DESTINATION develop/headers${INC_SUFFIX}/${PROJECT_NAME}
|
|
COMPONENT headers
|
|
)
|
|
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
|
|
index 17b3617..2dcc887 100644
|
|
--- a/src/CMakeLists.txt
|
|
+++ b/src/CMakeLists.txt
|
|
@@ -50,6 +50,6 @@ if ( STATICLIBS )
|
|
endif ()
|
|
|
|
install ( FILES ${c_headers}
|
|
- DESTINATION include/${PROJECT_NAME}
|
|
+ DESTINATION develop/headers${INC_SUFFIX}/${PROJECT_NAME}
|
|
COMPONENT headers
|
|
)
|
|
--
|
|
2.30.0
|
|
|