forked from HDFGroup/hdf5
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix some minor formatting for consistency (HDFGroup#3499)
- Loading branch information
Showing
6 changed files
with
27 additions
and
27 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
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,16 +1,16 @@ | ||
# Uncomment the following to use cross-compiling | ||
#set(CMAKE_SYSTEM_NAME Linux) | ||
#set (CMAKE_SYSTEM_NAME Linux) | ||
|
||
set(CMAKE_COMPILER_VENDOR "clang") | ||
set (CMAKE_COMPILER_VENDOR "clang") | ||
|
||
if(WIN32) | ||
set(CMAKE_C_COMPILER clang-cl) | ||
set(CMAKE_CXX_COMPILER clang-cl) | ||
set (CMAKE_C_COMPILER clang-cl) | ||
set (CMAKE_CXX_COMPILER clang-cl) | ||
else() | ||
set(CMAKE_C_COMPILER clang) | ||
set(CMAKE_CXX_COMPILER clang++) | ||
set (CMAKE_C_COMPILER clang) | ||
set (CMAKE_CXX_COMPILER clang++) | ||
endif() | ||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) | ||
set (CMAKE_EXPORT_COMPILE_COMMANDS ON) | ||
|
||
# the following is used if cross-compiling | ||
set(CMAKE_CROSSCOMPILING_EMULATOR "") | ||
set (CMAKE_CROSSCOMPILING_EMULATOR "") |
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,10 +1,10 @@ | ||
# The following line will use cross-compiling | ||
set(CMAKE_SYSTEM_NAME Linux) | ||
set (CMAKE_SYSTEM_NAME Linux) | ||
|
||
set(CMAKE_COMPILER_VENDOR "CrayLinuxEnvironment") | ||
set (CMAKE_COMPILER_VENDOR "CrayLinuxEnvironment") | ||
|
||
set(CMAKE_C_COMPILER cc) | ||
set(CMAKE_Fortran_COMPILER ftn) | ||
set (CMAKE_C_COMPILER cc) | ||
set (CMAKE_Fortran_COMPILER ftn) | ||
|
||
# the following is used if cross-compiling | ||
set(CMAKE_CROSSCOMPILING_EMULATOR "") | ||
set (CMAKE_CROSSCOMPILING_EMULATOR "") |
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,11 @@ | ||
# Uncomment the following line and the correct system name to use cross-compiling | ||
#set(CMAKE_SYSTEM_NAME Linux) | ||
#set (CMAKE_SYSTEM_NAME Linux) | ||
|
||
set(CMAKE_COMPILER_VENDOR "GCC") | ||
set (CMAKE_COMPILER_VENDOR "GCC") | ||
|
||
set(CMAKE_C_COMPILER cc) | ||
set(CMAKE_CXX_COMPILER c++) | ||
set(CMAKE_Fortran_COMPILER gfortran) | ||
set (CMAKE_C_COMPILER cc) | ||
set (CMAKE_CXX_COMPILER c++) | ||
set (CMAKE_Fortran_COMPILER gfortran) | ||
|
||
# the following is used if cross-compiling | ||
set(CMAKE_CROSSCOMPILING_EMULATOR "") | ||
set (CMAKE_CROSSCOMPILING_EMULATOR "") |
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
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,11 @@ | ||
# Uncomment the following to use cross-compiling | ||
#set(CMAKE_SYSTEM_NAME Linux) | ||
#set (CMAKE_SYSTEM_NAME Linux) | ||
|
||
set(CMAKE_COMPILER_VENDOR "PGI") | ||
set (CMAKE_COMPILER_VENDOR "PGI") | ||
|
||
set(CMAKE_C_COMPILER pgcc) | ||
set(CMAKE_CXX_COMPILER pgc++) | ||
set(CMAKE_Fortran_COMPILER pgf90) | ||
set (CMAKE_C_COMPILER pgcc) | ||
set (CMAKE_CXX_COMPILER pgc++) | ||
set (CMAKE_Fortran_COMPILER pgf90) | ||
|
||
# the following is used if cross-compiling | ||
set(CMAKE_CROSSCOMPILING_EMULATOR "") | ||
set (CMAKE_CROSSCOMPILING_EMULATOR "") |