Skip to content

Instantly share code, notes, and snippets.

View hidal00p's full-sized avatar
🐢
slo-mo

Anton hidal00p

🐢
slo-mo
View GitHub Profile
@scivision
scivision / CMakeLists.txt
Last active June 14, 2026 20:46
OpenMP with CMake, for macOS, Linux, and Windows
cmake_minimum_required(VERSION 3.19)
project(OpenMPdemo LANGUAGES C CXX)
find_package(OpenMP COMPONENTS C CXX REQUIRED)
enable_testing()
add_executable(hello_c hello_openmp.c)
target_link_libraries(hello_c PRIVATE OpenMP::OpenMP_C)