From 807cbab52b935d3d7b91f37a02cd9d097e1a400f Mon Sep 17 00:00:00 2001 From: Matt Witherspoon <32485495+spoonincode@users.noreply.github.com> Date: Wed, 14 Feb 2018 13:20:46 -0500 Subject: [PATCH] Fix boost library link ordering boost filesystem uses boost system. Set the link order accordingly. Fixes boost 1.66 linkage on Linux with ld. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 773e8c4ec..4b8607bc7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,8 +8,8 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS "ON") SET(BOOST_COMPONENTS) LIST(APPEND BOOST_COMPONENTS thread date_time - system filesystem + system chrono program_options unit_test_framework