X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=CMakeLists.txt;h=1b9c7d1a2b50fb3106a61c11e81c90df49ff87a7;hp=ebff3729f1b113a73ebbba68b1fa607ea07d6151;hb=03e8c9914eeadadd6f54aa32f55f5c08bd27c426;hpb=3668e2fe35956801bc3f89de2dabcddf98e19179 diff --git a/CMakeLists.txt b/CMakeLists.txt index ebff3729..1b9c7d1a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -80,9 +80,9 @@ find_package(Threads) if(WIN32) # On Windows/MinGW we need to use 'thread_win32' instead of 'thread'. # The library is named libboost_thread_win32* (not libboost_thread*). - find_package(Boost 1.42 COMPONENTS system thread_win32 REQUIRED) + find_package(Boost 1.42 COMPONENTS filesystem system thread_win32 REQUIRED) else() - find_package(Boost 1.42 COMPONENTS system thread REQUIRED) + find_package(Boost 1.42 COMPONENTS filesystem system thread REQUIRED) endif() #===============================================================================