cmake: enable Fortran before checking for the compiler

This commit is contained in:
Christoph Junghans 2020-05-05 07:10:42 -06:00
parent 260e6bafd5
commit b5af7da2c6
1 changed files with 1 additions and 1 deletions

View File

@ -553,8 +553,8 @@ if(BUILD_TOOLS)
install(TARGETS binary2txt DESTINATION ${CMAKE_INSTALL_BINDIR})
include(CheckGeneratorSupport)
enable_language(Fortran)
if(CMAKE_GENERATOR_SUPPORT_FORTRAN AND CMAKE_Fortran_COMPILER)
enable_language(Fortran)
add_executable(chain.x ${LAMMPS_TOOLS_DIR}/chain.f)
target_link_libraries(chain.x PRIVATE ${CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES})
install(TARGETS chain.x DESTINATION ${CMAKE_INSTALL_BINDIR})