X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=CMakeLists.txt;h=11767a6fc587df5a7948169aaa3751a568ac7f4d;hp=ebff3729f1b113a73ebbba68b1fa607ea07d6151;hb=fc921b20cc5fb90862e1e358cbb00b567d52e72d;hpb=ae2d1bc5b5aba9fcdd7fef42ef1bc9069267d6f7 diff --git a/CMakeLists.txt b/CMakeLists.txt index ebff3729..11767a6f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,7 +33,7 @@ project(pulseview) option(DISABLE_WERROR "Build without -Werror" FALSE) option(ENABLE_SIGNALS "Build with UNIX signals" TRUE) -option(ENABLE_DECODE "Build with libsigrokdecode" FALSE) +option(ENABLE_DECODE "Build with libsigrokdecode" TRUE) option(ENABLE_COTIRE "Enable cotire" FALSE) option(ENABLE_TESTS "Enable unit tests" FALSE) option(STATIC_PKGDEPS_LIBS "Statically link to (pkg-config) libraries" FALSE) @@ -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() #===============================================================================