From 4fb8f8479cdf0dc149687316e140658fc14bbb64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20P=C3=A9ron?= Date: Thu, 19 Sep 2024 12:09:58 +0200 Subject: [PATCH] cmake: force use of pcapplusplus/ prefix --- Common++/CMakeLists.txt | 2 +- Packet++/CMakeLists.txt | 2 +- Pcap++/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Common++/CMakeLists.txt b/Common++/CMakeLists.txt index 5b75bf9f77..46ce5007bb 100644 --- a/Common++/CMakeLists.txt +++ b/Common++/CMakeLists.txt @@ -32,7 +32,7 @@ set_property(TARGET Common++ PROPERTY PUBLIC_HEADER ${public_headers}) target_include_directories( Common++ - PUBLIC $ $ + PUBLIC $ $ # Don't link with EndianPortable and json as it won't be exported PRIVATE $ PRIVATE $) diff --git a/Packet++/CMakeLists.txt b/Packet++/CMakeLists.txt index cc7a8268d2..d493e01885 100644 --- a/Packet++/CMakeLists.txt +++ b/Packet++/CMakeLists.txt @@ -140,7 +140,7 @@ set_property(TARGET Packet++ PROPERTY PUBLIC_HEADER ${public_headers}) target_include_directories( Packet++ - PUBLIC $ $ + PUBLIC $ $ # Don't link with hash-library nor EndianPortable as they won't be exported PRIVATE $ PRIVATE $) diff --git a/Pcap++/CMakeLists.txt b/Pcap++/CMakeLists.txt index f28fcb6be6..0f1ca03cba 100644 --- a/Pcap++/CMakeLists.txt +++ b/Pcap++/CMakeLists.txt @@ -89,7 +89,7 @@ endif() target_include_directories( Pcap++ - PUBLIC $ $ + PUBLIC $ $ # Don't link with EndianPortable nor Light_PcapNG as they won't be exported PRIVATE $ $)