-
-
Notifications
You must be signed in to change notification settings - Fork 261
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
35 changed files
with
1,903 additions
and
38 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
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
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 |
---|---|---|
|
@@ -304,4 +304,4 @@ file(GLOB_RECURSE CMAKE_FILES | |
) | ||
cmake_format(TARGET_NAME ${CMAKE_FILES}) | ||
``` | ||
``` |
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 "") |
Oops, something went wrong.