
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
132 B
CMake
8 lines
132 B
CMake
if(__craylinux_crayprgenv_c)
|
|
return()
|
|
endif()
|
|
set(__craylinux_crayprgenv_c 1)
|
|
|
|
include(Compiler/CrayPrgEnv)
|
|
__CrayPrgEnv_setup(C)
|