From 617c69529e5e266aba94c16c1ea3970c755b5431 Mon Sep 17 00:00:00 2001 From: pentarctagon Date: Sun, 14 Oct 2018 21:40:53 -0500 Subject: [PATCH] Fix cmake linking against libboost_thread. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 538daabdc7e0..1484d7368b33 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -69,7 +69,7 @@ if(ENABLE_GAME OR ENABLE_TESTS) find_package(SDL2 2.0.4 REQUIRED) endif(ENABLE_GAME OR ENABLE_TESTS) find_package(Crypto 1.0 REQUIRED) -find_package(Boost 1.56 REQUIRED COMPONENTS iostreams program_options regex system random) +find_package(Boost 1.56 REQUIRED COMPONENTS iostreams program_options regex system thread random) # no, gettext executables are not required when NLS is deactivated find_package(Gettext)