From f5d714c945792ddcd3ddac05fd25466e462770a9 Mon Sep 17 00:00:00 2001 From: Anirudh Rengarajan <44007330+arengarajan99@users.noreply.github.com> Date: Fri, 24 Feb 2023 12:05:06 -0800 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Marten Lohstroh --- core/CMakeLists.txt | 2 +- core/federated/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index b0ba14f2d..2ff9d6095 100644 --- a/core/CMakeLists.txt +++ b/core/CMakeLists.txt @@ -16,7 +16,7 @@ list(APPEND INFO_SOURCES ${GENERAL_SOURCES}) add_library(core ${GENERAL_SOURCES}) # Add sources for either threaded or unthreaded runtime -if(DEFINED FEDERATED) +if (DEFINED FEDERATED) include(federated/CMakeLists.txt) endif() diff --git a/core/federated/CMakeLists.txt b/core/federated/CMakeLists.txt index cd80582ee..d5af17c2b 100644 --- a/core/federated/CMakeLists.txt +++ b/core/federated/CMakeLists.txt @@ -2,4 +2,4 @@ set(FEDERATED_SOURCES clock-sync.c federate.c net_util.c) list(APPEND INFO_SOURCES ${FEDERATED_SOURCES}) list(TRANSFORM FEDERATED_SOURCES PREPEND federated/) -target_sources(core PRIVATE ${FEDERATED_SOURCES}) \ No newline at end of file +target_sources(core PRIVATE ${FEDERATED_SOURCES})