-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed comments in HandleOpenMPFlags
- Loading branch information
Showing
1 changed file
with
0 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,7 @@ | ||
# - Adds the right OpenMP flags to the CXX compiler | ||
# The following variables are set: | ||
# OpenMP_CXX_FLAGS - flags to add to the CXX compiler for OpenMP support | ||
# OPENMP_FOUND - true if openmp is detected | ||
|
||
FIND_PACKAGE(OpenMP) | ||
|
||
# handle OPENMP flags | ||
IF(OPENMP_FOUND) | ||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}") | ||
ENDIF() |