CMake and Boost

后端 未结 2 1217
[愿得一人]
[愿得一人] 2020-12-29 15:57

I\'ve searched and found out that a lot of people have the same problem, but no solution exists.

I\'m using CMake to generate Makefiles for MinGW and when compiling

2条回答
  •  無奈伤痛
    2020-12-29 16:43

    For mingw32 you may add definition BOOST_THREAD_USE_LIB. And linking with boost::thread will work. Also you may need Threads package (but i'm not sure, may be it needs only for *nix platforms).

    Here is part of my CMakeLists. I copied it from project, which uses boost::thread, and compiles under mingw-gcc (and other compilers):

        set(Boost_USE_STATIC_LIBS   ON)
        set(Boost_USE_MULTITHREADED ON)
        set(Boost_ADDITIONAL_VERSIONS "1.44" "1.44.0")
        find_package(Boost COMPONENTS thread date_time program_options filesystem system REQUIRED)
        include_directories(${Boost_INCLUDE_DIRS})
    
        find_package(Threads REQUIRED)
    
        #...
    
        if (WIN32 AND __COMPILER_GNU)
            # mingw-gcc fails to link boost::thread
            add_definitions(-DBOOST_THREAD_USE_LIB)
        endif (WIN32 AND __COMPILER_GNU)
    
        #...
    
        target_link_libraries(my_exe
                ${CMAKE_THREAD_LIBS_INIT}
                #...
            ${Boost_LIBRARIES}
        )
    

提交回复
热议问题