CMake : not found in Windows

前端 未结 3 578
南笙
南笙 2021-02-05 14:55

I\'m newbie with CMake. I tested it on Linux for a program I am making. This program uses (POSIX Threads lib), so in my CMakeList, I added :

find_package(Thread         


        
3条回答
  •  忘了有多久
    2021-02-05 15:30

    As far as i know, Pthreads is not natively supported on windows platform. Unless you use some thing like

    win services for unix

    Windows only has win32 threads.

    However, this is a project which provides pthreads on windows

    pthreads on win32

提交回复
热议问题