File: 0004-Use-system-Boost.patch

package info (click to toggle)
fastdds 3.3.0%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 60,540 kB
  • sloc: cpp: 793,735; xml: 15,283; python: 5,902; sh: 219; makefile: 95; ansic: 12
file content (21 lines) | stat: -rw-r--r-- 638 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: =?utf-8?q?Timo_R=C3=B6hling?= <timo@gaussglocke.de>
Date: Thu, 3 Dec 2020 11:26:28 +0100
Subject: Use system Boost

Forwarded: not-needed
---
 cmake/modules/FindThirdpartyBoost.cmake | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cmake/modules/FindThirdpartyBoost.cmake b/cmake/modules/FindThirdpartyBoost.cmake
index 163a91a..dd65670 100644
--- a/cmake/modules/FindThirdpartyBoost.cmake
+++ b/cmake/modules/FindThirdpartyBoost.cmake
@@ -11,6 +11,7 @@ set(THIRDPARTY_BOOST_INCLUDE_DIR
     "Path to thirdparty/boost"
 )
 
+find_package(Boost REQUIRED)
 find_package(Threads REQUIRED)
 
 if(WIN32 OR APPLE OR ANDROID OR QNXNTO)