This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) |