From 6828b3b530f883a8810984697b488d40f9b79113 Mon Sep 17 00:00:00 2001 From: Mark Melton Date: Sun, 11 Jun 2023 11:14:53 -0400 Subject: [PATCH] Remove include guard for plain `tuple` target. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f23fcd4..a01bb7b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ project (tuple VERSION 0.1 LANGUAGES C CXX) # Make including this file idempotent # -if(TARGET tuple OR TARGET tuple::tuple) +if(TARGET tuple::tuple) return() endif()