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 March 11, 2026 13:09
OpenMP with CMake
cmake_minimum_required(VERSION 3.19)
project(OpenMPdemo LANGUAGES C)
find_package(OpenMP COMPONENTS C REQUIRED)
add_executable(hello hello_openmp.c)
target_link_libraries(hello PRIVATE OpenMP::OpenMP_C)