From c614893f589ae23b2de7ba9ebbb8fdfb20069b5d Mon Sep 17 00:00:00 2001 From: Bill Avery Date: Fri, 3 Dec 2021 08:39:43 -0800 Subject: [PATCH] Add comments indicating not to copy include statements --- samples/client/benchmark/CMakeLists.txt | 1 + samples/client/mutate/CMakeLists.txt | 1 + samples/client/query/CMakeLists.txt | 1 + samples/client/subscribe/CMakeLists.txt | 1 + samples/learn/schema/CMakeLists.txt | 1 + samples/today/separate/CMakeLists.txt | 1 + samples/today/separate_nointrospection/CMakeLists.txt | 1 + samples/today/unified/CMakeLists.txt | 1 + samples/today/unified_nointrospection/CMakeLists.txt | 1 + samples/validation/schema/CMakeLists.txt | 1 + 10 files changed, 10 insertions(+) diff --git a/samples/client/benchmark/CMakeLists.txt b/samples/client/benchmark/CMakeLists.txt index 4b390290..cc0dbb0b 100644 --- a/samples/client/benchmark/CMakeLists.txt +++ b/samples/client/benchmark/CMakeLists.txt @@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.8.2) +# Normally this would be handled by find_package(cppgraphqlgen CONFIG). include(${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/cppgraphqlgen-functions.cmake) if(GRAPHQL_UPDATE_SAMPLES AND GRAPHQL_BUILD_CLIENTGEN) diff --git a/samples/client/mutate/CMakeLists.txt b/samples/client/mutate/CMakeLists.txt index b66967ae..cf143bd1 100644 --- a/samples/client/mutate/CMakeLists.txt +++ b/samples/client/mutate/CMakeLists.txt @@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.8.2) +# Normally this would be handled by find_package(cppgraphqlgen CONFIG). include(${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/cppgraphqlgen-functions.cmake) if(GRAPHQL_UPDATE_SAMPLES AND GRAPHQL_BUILD_CLIENTGEN) diff --git a/samples/client/query/CMakeLists.txt b/samples/client/query/CMakeLists.txt index 8a23e755..f4d68c18 100644 --- a/samples/client/query/CMakeLists.txt +++ b/samples/client/query/CMakeLists.txt @@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.8.2) +# Normally this would be handled by find_package(cppgraphqlgen CONFIG). include(${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/cppgraphqlgen-functions.cmake) if(GRAPHQL_UPDATE_SAMPLES AND GRAPHQL_BUILD_CLIENTGEN) diff --git a/samples/client/subscribe/CMakeLists.txt b/samples/client/subscribe/CMakeLists.txt index 9e3dd74f..15712ae6 100644 --- a/samples/client/subscribe/CMakeLists.txt +++ b/samples/client/subscribe/CMakeLists.txt @@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.8.2) +# Normally this would be handled by find_package(cppgraphqlgen CONFIG). include(${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/cppgraphqlgen-functions.cmake) if(GRAPHQL_UPDATE_SAMPLES AND GRAPHQL_BUILD_CLIENTGEN) diff --git a/samples/learn/schema/CMakeLists.txt b/samples/learn/schema/CMakeLists.txt index db13a481..272eed9f 100644 --- a/samples/learn/schema/CMakeLists.txt +++ b/samples/learn/schema/CMakeLists.txt @@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.8.2) +# Normally this would be handled by find_package(cppgraphqlgen CONFIG). include(${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/cppgraphqlgen-functions.cmake) if(GRAPHQL_UPDATE_SAMPLES) diff --git a/samples/today/separate/CMakeLists.txt b/samples/today/separate/CMakeLists.txt index 024c5d70..105b6f58 100644 --- a/samples/today/separate/CMakeLists.txt +++ b/samples/today/separate/CMakeLists.txt @@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.8.2) +# Normally this would be handled by find_package(cppgraphqlgen CONFIG). include(${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/cppgraphqlgen-functions.cmake) if(GRAPHQL_UPDATE_SAMPLES) diff --git a/samples/today/separate_nointrospection/CMakeLists.txt b/samples/today/separate_nointrospection/CMakeLists.txt index 95e7a03a..58043d37 100644 --- a/samples/today/separate_nointrospection/CMakeLists.txt +++ b/samples/today/separate_nointrospection/CMakeLists.txt @@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.8.2) +# Normally this would be handled by find_package(cppgraphqlgen CONFIG). include(${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/cppgraphqlgen-functions.cmake) if(GRAPHQL_UPDATE_SAMPLES) diff --git a/samples/today/unified/CMakeLists.txt b/samples/today/unified/CMakeLists.txt index 4490d0f4..320ecc0f 100644 --- a/samples/today/unified/CMakeLists.txt +++ b/samples/today/unified/CMakeLists.txt @@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.8.2) +# Normally this would be handled by find_package(cppgraphqlgen CONFIG). include(${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/cppgraphqlgen-functions.cmake) if(GRAPHQL_UPDATE_SAMPLES) diff --git a/samples/today/unified_nointrospection/CMakeLists.txt b/samples/today/unified_nointrospection/CMakeLists.txt index ab0ed1d5..ee854ba4 100644 --- a/samples/today/unified_nointrospection/CMakeLists.txt +++ b/samples/today/unified_nointrospection/CMakeLists.txt @@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.8.2) +# Normally this would be handled by find_package(cppgraphqlgen CONFIG). include(${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/cppgraphqlgen-functions.cmake) if(GRAPHQL_UPDATE_SAMPLES) diff --git a/samples/validation/schema/CMakeLists.txt b/samples/validation/schema/CMakeLists.txt index 329ccba7..ab0e7d36 100644 --- a/samples/validation/schema/CMakeLists.txt +++ b/samples/validation/schema/CMakeLists.txt @@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.8.2) +# Normally this would be handled by find_package(cppgraphqlgen CONFIG). include(${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/cppgraphqlgen-functions.cmake) if(GRAPHQL_UPDATE_SAMPLES)