Skip to content

Commit

Permalink
Revert all Fortran CMake changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lefticus committed Dec 31, 2020
1 parent 1579be0 commit 0354a59
Show file tree
Hide file tree
Showing 9 changed files with 253 additions and 243 deletions.
15 changes: 8 additions & 7 deletions src/AppGPostProcess/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ cmake_minimum_required(VERSION 3.5.1)

cmake_policy(SET CMP0012 NEW) # if() recognizes boolean constants

set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products")
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products")
set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )

set(SRC AppGPostProcess.f90)

Expand Down Expand Up @@ -35,7 +35,7 @@ elseif(UNIX)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ffree-line-length-200")
set(STATIC_EXE TRUE)
endif()
else() # Windows
else() # Windows
set(STATIC_EXE TRUE)
if(CMAKE_Fortran_COMPILER MATCHES "ifort")
# Set release flags to be empty
Expand All @@ -52,11 +52,12 @@ else() # Windows
endif()

set(SKIP_BUILD_RPATH TRUE)
add_executable(AppGPostProcess ${SRC})
add_executable( AppGPostProcess ${SRC} )
set_target_properties(AppGPostProcess PROPERTIES FOLDER Auxiliary)

install(TARGETS AppGPostProcess DESTINATION PostProcess)
install( TARGETS AppGPostProcess DESTINATION PostProcess )
if(NOT ${STATIC_EXE})
include("${CMAKE_CURRENT_SOURCE_DIR}/../../cmake/ProjectMacros.cmake")
install_target_prereqs(AppGPostProcess PostProcess)
install_target_prereqs( AppGPostProcess PostProcess )
endif()

48 changes: 25 additions & 23 deletions src/Basement/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,61 +4,63 @@ cmake_minimum_required(VERSION 3.5.1)

cmake_policy(SET CMP0012 NEW) # if() recognizes boolean constants

set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products")
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products")
set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )

set(SRC
3DBasementHT.f90
DataGlobals.f90
DataStringGlobals.f90
EPWRead.f90
UtilityRoutines.f90
DataPrecisionGlobals.f90
EPWPrecisionGlobals.f90
InputProcessor.f90
BasementSimData.f90)
3DBasementHT.f90
DataGlobals.f90
DataStringGlobals.f90
EPWRead.f90
UtilityRoutines.f90
DataPrecisionGlobals.f90
EPWPrecisionGlobals.f90
InputProcessor.f90
BasementSimData.f90
)

set(STATIC_EXE FALSE)

if(APPLE)
if(CMAKE_Fortran_COMPILER MATCHES "ifort")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -static-intel")
else()
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ffloat-store")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ffloat-store" )
endif()
elseif(UNIX)
set(CMAKE_SKIP_RPATH TRUE)
if(CMAKE_Fortran_COMPILER MATCHES "ifort")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -static-intel")
else()
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ffloat-store")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -static")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ffloat-store" )
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -static" )
set(STATIC_EXE TRUE)
endif()
else() # Windows
else() # Windows
set(STATIC_EXE TRUE)
if(CMAKE_Fortran_COMPILER MATCHES "ifort")
# Set release flags to be empty
set(CMAKE_Fortran_FLAGS_RELEASE "")
set(CMAKE_Fortran_FLAGS
"/nologo /debug:minimal /O2 /Oy- /assume:buffered_io /noaltparam /fpscomp:nolibs /fpe:0 /fp:fast=2 /traceback /check:uninit /libs:static /threads /c /assume:protect-parens /Qprec-div /Qprec-sqrt /Qimf-precision:high /Qimf-arch-consistency:true /Qvec-"
)
set(CMAKE_Fortran_FLAGS "/nologo /debug:minimal /O2 /Oy- /assume:buffered_io /noaltparam /fpscomp:nolibs /fpe:0 /fp:fast=2 /traceback /check:uninit /libs:static /threads /c /assume:protect-parens /Qprec-div /Qprec-sqrt /Qimf-precision:high /Qimf-arch-consistency:true /Qvec-")
else()
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -static")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ffloat-store")
endif()
endif()

set(SKIP_BUILD_RPATH TRUE)
add_executable(Basement ${SRC})
add_executable( Basement ${SRC} )

set_target_properties(Basement PROPERTIES COMPILE_FLAGS "-O1 -ffree-line-length-200 ${SHARED_FLAGS}")
set_target_properties(Basement PROPERTIES
COMPILE_FLAGS "-O1 -ffree-line-length-200 ${SHARED_FLAGS}"
)
set_target_properties(Basement PROPERTIES FOLDER Auxiliary)

install(TARGETS Basement DESTINATION PreProcess/GrndTempCalc)
install( TARGETS Basement DESTINATION PreProcess/GrndTempCalc )
if(NOT ${STATIC_EXE})
include("${CMAKE_CURRENT_SOURCE_DIR}/../../cmake/ProjectMacros.cmake")
install_target_prereqs(Basement PreProcess/GrndTempCalc)
install_target_prereqs( Basement PreProcess/GrndTempCalc )
endif()
install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/../../idd/BasementGHT.idd" DESTINATION "PreProcess/GrndTempCalc/")

46 changes: 22 additions & 24 deletions src/CalcSoilSurfTemp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,62 +4,60 @@ cmake_minimum_required(VERSION 3.5.1)

cmake_policy(SET CMP0012 NEW) # if() recognizes boolean constants

set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products")
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products")
set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )

set(SRC EPWRead.f90 SoilSurfTemp.f90)

set(STATIC_EXE FALSE)

add_library(CalcSoilSurfTempOptions INTERFACE)

if(APPLE)
if(CMAKE_Fortran_COMPILER MATCHES "ifort")
target_compile_options(CalcSoilSurfTempOptions INTERFACE -fpp)
target_compile_options(CalcSoilSurfTempOptions INTERFACE -static-intel)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fpp")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -static-intel")
else()
if(NOT "Ninja" STREQUAL ${CMAKE_GENERATOR})
target_compile_options(CalcSoilSurfTempOptions INTERFACE -cpp)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -cpp")
endif()
target_compile_options(CalcSoilSurfTempOptions INTERFACE -ffree-line-length-200)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ffree-line-length-200")
endif()
elseif(UNIX)
set(CMAKE_SKIP_RPATH TRUE)
if(CMAKE_Fortran_COMPILER MATCHES "ifort")
target_compile_options(CalcSoilSurfTempOptions INTERFACE -fpp)
target_compile_options(CalcSoilSurfTempOptions INTERFACE -static-intel)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fpp")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -static-intel")
else()
if(NOT "Ninja" STREQUAL ${CMAKE_GENERATOR})
target_compile_options(CalcSoilSurfTempOptions INTERFACE -cpp)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -cpp")
endif()
target_compile_options(CalcSoilSurfTempOptions INTERFACE -static)
target_compile_options(CalcSoilSurfTempOptions INTERFACE -ffree-line-length-200)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -static")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ffree-line-length-200")
set(STATIC_EXE TRUE)
endif()
else() # Windows
else() # Windows
set(STATIC_EXE TRUE)
if(CMAKE_Fortran_COMPILER MATCHES "ifort")
# Set release flags to be empty
set(CMAKE_Fortran_FLAGS_RELEASE "")
target_compile_options(CalcSoilSurfTempOptions INTERFACE /libs:static)
target_compile_options(CalcSoilSurfTempOptions INTERFACE /fpp)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} /libs:static")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} /fpp")
else()
target_compile_options(CalcSoilSurfTempOptions INTERFACE -static)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -static")
if(NOT "Ninja" STREQUAL ${CMAKE_GENERATOR})
target_compile_options(CalcSoilSurfTempOptions INTERFACE -cpp)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -cpp")
endif()
target_compile_options(CalcSoilSurfTempOptions INTERFACE -ffree-line-length-200)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ffree-line-length-200")
endif()
endif()

set(SKIP_BUILD_RPATH TRUE)
add_executable(CalcSoilSurfTemp ${SRC})
target_link_libraries(CalcSoilSurfTemp PRIVATE CalcSoilSurfTempOptions)
ADD_EXECUTABLE( CalcSoilSurfTemp ${SRC} )
set_target_properties(CalcSoilSurfTemp PROPERTIES FOLDER Auxiliary)

install(TARGETS CalcSoilSurfTemp DESTINATION PreProcess/CalcSoilSurfTemp)
install( TARGETS CalcSoilSurfTemp DESTINATION PreProcess/CalcSoilSurfTemp )
if(NOT ${STATIC_EXE})
include("${CMAKE_CURRENT_SOURCE_DIR}/../../cmake/ProjectMacros.cmake")
install_target_prereqs(CalcSoilSurfTemp PreProcess/CalcSoilSurfTemp)
install_target_prereqs( CalcSoilSurfTemp PreProcess/CalcSoilSurfTemp )
endif()

46 changes: 26 additions & 20 deletions src/ConvertInputFormat/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,39 +1,45 @@
cmake_minimum_required(VERSION 3.5.1)
project(ConvertInputFormat)

set(CMAKE_CXX_STANDARD 11)

# Set the CFLAGS and CXXFLAGS depending on the options the user specified.
# Only GCC-like compilers support -Wextra, and other compilers give tons of
# output for -Wall, so only -Wall and -Wextra on GCC.
#if(CMAKE_COMPILER_IS_GNUCC OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -pedantic")
# set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -pedantic")
#endif(CMAKE_COMPILER_IS_GNUCC OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
#
if(APPLE OR UNIX)
add_executable(ConvertInputFormat main.cpp)
else() # windows
add_executable(ConvertInputFormat main.cpp) # "${CMAKE_CURRENT_BINARY_DIR}/energyplus.rc" )
endif()


target_link_libraries(ConvertInputFormat PRIVATE project_options project_warnings)
if (CMAKE_COMPILER_IS_GNUCC OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -pedantic")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -pedantic")
endif (CMAKE_COMPILER_IS_GNUCC OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")

# Detect OpenMP support in a compiler. If the compiler supports OpenMP, the
# flags to compile with OpenMP are returned and added.
find_package(OpenMP)
if(OpenMP_CXX_FOUND)
target_link_libraries(ConvertInputFormat PRIVATE OpenMP::OpenMP_CXX)
if (OPENMP_FOUND)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}")
endif (OPENMP_FOUND)

if (UNIX)
ADD_DEFINITIONS("-fPIC")
endif()

if (APPLE OR UNIX)
add_executable( ConvertInputFormat main.cpp )
else() # windows
add_executable( ConvertInputFormat main.cpp ) # "${CMAKE_CURRENT_BINARY_DIR}/energyplus.rc" )
endif()

target_link_libraries( ConvertInputFormat energyplusparser )

target_link_libraries(ConvertInputFormat PRIVATE energyplusparser ${CMAKE_DL_LIBS})
if(UNIX AND NOT APPLE)
target_link_libraries( ConvertInputFormat dl )
endif()

if(WIN32)
target_link_libraries(ConvertInputFormat PRIVATE Shlwapi)
if (WIN32)
target_link_libraries( ConvertInputFormat Shlwapi )
endif()

set_target_properties(ConvertInputFormat PROPERTIES VERSION ${ENERGYPLUS_VERSION})
set_target_properties(ConvertInputFormat PROPERTIES FOLDER Auxiliary)

install(TARGETS ConvertInputFormat DESTINATION ./)

install( TARGETS ConvertInputFormat DESTINATION ./ )
55 changes: 27 additions & 28 deletions src/ExpandObjects/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,71 +4,70 @@ cmake_minimum_required(VERSION 3.5.1)

cmake_policy(SET CMP0012 NEW) # if() recognizes boolean constants

set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products")
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products")
set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../../Products" )

if(WIN32)
configure_file(ExpandObjects.rc.in "${CMAKE_CURRENT_BINARY_DIR}/ExpandObjects.rc")
configure_file( ExpandObjects.rc.in "${CMAKE_CURRENT_BINARY_DIR}/ExpandObjects.rc" )
endif()

set(SRC epfilter.f90)

set(STATIC_EXE FALSE)

add_library(ExpandObjectsOptions INTERFACE)

if(APPLE)
if(CMAKE_Fortran_COMPILER MATCHES "ifort")
target_compile_options(ExpandObjectsOptions INTERFACE -fpp)
target_compile_options(ExpandObjectsOptions INTERFACE -static-intel)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fpp")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -static-intel")
else()
if(NOT "Ninja" STREQUAL ${CMAKE_GENERATOR})
target_compile_options(ExpandObjectsOptions INTERFACE -cpp)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -cpp")
endif()
target_compile_options(ExpandObjectsOptions INTERFACE -ffree-line-length-200)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ffree-line-length-200")
endif()
elseif(UNIX)
set(CMAKE_SKIP_RPATH TRUE)
if(CMAKE_Fortran_COMPILER MATCHES "ifort")
target_compile_options(ExpandObjectsOptions INTERFACE -fpp)
target_compile_options(ExpandObjectsOptions INTERFACE -static-intel)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fpp")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -static-intel")
else()
if(NOT "Ninja" STREQUAL ${CMAKE_GENERATOR})
target_compile_options(ExpandObjectsOptions INTERFACE -cpp)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -cpp")
endif()
target_compile_options(ExpandObjectsOptions INTERFACE -static)
target_compile_options(ExpandObjectsOptions INTERFACE -ffree-line-length-200)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -static")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ffree-line-length-200")
set(STATIC_EXE TRUE)
endif()
else() # Windows
else() # Windows
set(STATIC_EXE TRUE)
if(CMAKE_Fortran_COMPILER MATCHES "ifort")
# Set release flags to be empty
set(CMAKE_Fortran_FLAGS_RELEASE "")
target_compile_options(ExpandObjectsOptions INTERFACE /libs:static)
target_compile_options(ExpandObjectsOptions INTERFACE /fpp)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} /libs:static")
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} /fpp")
else()
target_compile_options(ExpandObjectsOptions INTERFACE -static)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -static")
if(NOT "Ninja" STREQUAL ${CMAKE_GENERATOR})
target_compile_options(ExpandObjectsOptions INTERFACE -cpp)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -cpp")
endif()
target_compile_options(ExpandObjectsOptions INTERFACE -ffree-line-length-200)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ffree-line-length-200")
endif()
endif()

set(SKIP_BUILD_RPATH TRUE)
if(APPLE OR UNIX)
add_executable(ExpandObjects ${SRC})
else() # windows
add_executable(ExpandObjects ${SRC} "${CMAKE_CURRENT_BINARY_DIR}/ExpandObjects.rc")
if (APPLE OR UNIX)
add_executable( ExpandObjects ${SRC} )
else() # windows
add_executable( ExpandObjects ${SRC} "${CMAKE_CURRENT_BINARY_DIR}/ExpandObjects.rc" )
endif()

target_link_libraries(ExpandObjects ExpandObjectsOptions)
set_target_properties(ExpandObjects PROPERTIES FOLDER Auxiliary)

install(TARGETS ExpandObjects DESTINATION "./")

install( TARGETS ExpandObjects DESTINATION "./" )
if(NOT ${STATIC_EXE})
include("${CMAKE_CURRENT_SOURCE_DIR}/../../cmake/ProjectMacros.cmake")
install_target_prereqs(ExpandObjects "./")
install_target_prereqs( ExpandObjects "./" )
endif()

Loading

5 comments on commit 0354a59

@nrel-bot-3
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cmake_modernize (lefticus) - x86_64-MacOS-10.15-clang-11.0.0: OK (2998 of 2998 tests passed, 0 test warnings)

Build Badge Test Badge

@nrel-bot-2b
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cmake_modernize (lefticus) - x86_64-Linux-Ubuntu-18.04-gcc-7.5: OK (3038 of 3038 tests passed, 0 test warnings)

Build Badge Test Badge

@nrel-bot-2c
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cmake_modernize (lefticus) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-UnitTestsCoverage-Debug: OK (1563 of 1564 tests passed, 0 test warnings)

Failures:\n

EnergyPlusFixture Test Summary

  • Passed: 1092
  • Child aborted: 1

Build Badge Test Badge Coverage Badge

@nrel-bot-2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cmake_modernize (lefticus) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-IntegrationCoverage-Debug: OK (721 of 721 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

@nrel-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cmake_modernize (lefticus) - Win64-Windows-10-VisualStudio-16: OK (2255 of 2255 tests passed, 0 test warnings)

Build Badge Test Badge

Please sign in to comment.