Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/test/cmake/threads/CMakeLists.txt
6174 views
1
cmake_minimum_required(VERSION 3.16)
2
3
project(threads VERSION 0.42)
4
5
find_package(Threads REQUIRED)
6
7
if (!CMAKE_USE_PTHREADS_INIT)
8
message(FATAL_ERROR "pthreads not found")
9
endif()
10
11
add_executable(hello hello.c)
12
13
target_link_libraries(hello ${CMAKE_THREAD_LIBS_INIT})
14
15