mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-03 12:19:41 -06:00
Remove now redundant implicit parser code from CrayPrgEnv.cmake, as
this function is now supported in the general cmake code
(e.g. Modules/CMakeParseImplicit{Include,Link}Info.cmake).
This simplifies __CrayPrgEnv_setup() to take only one arg (${lang})
and allows us to remove a level of inclusion as
CrayPrgEnv-${lang}.cmake is now compiler independent we
do not need the CrayPrgEnv-${compiler}-${lang} files any more.
8 lines
150 B
CMake
8 lines
150 B
CMake
if(__craylinux_crayprgenv_fortran)
|
|
return()
|
|
endif()
|
|
set(__craylinux_crayprgenv_fortran 1)
|
|
|
|
include(Compiler/CrayPrgEnv)
|
|
__CrayPrgEnv_setup(Fortran)
|