I am Charmie

メモとログ

OpenMP

OpenMP: minimum code

Here's a minimum code of OpenMP with CMake. The code outputs "OpenMP: ON" if OpenMP is available and "OpenMP: OFF" otherwise. CMakeLists.txt: [code lang="cmake"] cmake_minimum_required(VERSION 2.8) set(PROJ_NAME OpenMPtest) PROJECT(${PROJ_…