From d284572bfc43d8a4567f5882d61447c6600a215d Mon Sep 17 00:00:00 2001 From: Robert Crossfield Date: Sun, 2 Jun 2024 07:42:32 +1000 Subject: [PATCH] Add required to threads in cmake --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f7c2b6d4..ed04864a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${openfodder_SOURCE_DIR}/cmake) find_package(SDL2 REQUIRED) find_package(SDL2Mixer REQUIRED) -find_package(Threads) +find_package(Threads REQUIRED) # Locate git binary to provide information to the build environment find_package(Git)