From 53f033f4735afcaec0988d7936206bf69ef72ad0 Mon Sep 17 00:00:00 2001 From: Peter Donovan Date: Thu, 21 Jul 2022 14:20:09 -0700 Subject: [PATCH] Repair preceding commit. --- core/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index a4e88bac0..cead8a294 100644 --- a/core/CMakeLists.txt +++ b/core/CMakeLists.txt @@ -47,7 +47,8 @@ add_subdirectory(platform) add_subdirectory(utils) # List sources in this directory. -set(SINGLE_THREADED_SOURCES reactor.c port.c) +set(SINGLE_THREADED_SOURCES reactor.c) +list(APPEND GENERAL_SOURCES port.c) # Determine which sources to include. list(APPEND SOURCES ${GENERAL_SOURCES})