Skip to content

Instantly share code, notes, and snippets.

View TysonRayJones's full-sized avatar

Tyson Jones TysonRayJones

View GitHub Profile
@scivision
scivision / CMakeLists.txt
Last active March 14, 2025 19:07
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)