Skip to content

Commit

Permalink
Merge pull request #50 from visit-dav/biagas/windows10_build_and_release
Browse files Browse the repository at this point in the history
Fix CMake warning about mismatched if else endif.
  • Loading branch information
biagas committed Feb 5, 2019
2 parents 8213462 + 9419b9c commit a7cc804
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tools/data/datagen/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ IF(EXISTS ${VISIT_SOURCE_DIR}/../data/visit_dist_data.tar.gz)
GROUP_READ GROUP_WRITE GROUP_EXECUTE
WORLD_READ WORLD_EXECUTE)

ELSE(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/visit_dist_data.tar.gz)
ELSE()

IF(SILO_FOUND)
SET(EXE_EXT "")
Expand Down Expand Up @@ -557,6 +557,6 @@ ELSE(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/visit_dist_data.tar.gz)
MESSAGE(STATUS "is missing and VisIt is not being built with Silo")
MESSAGE(STATUS "support.")
ENDIF(SILO_FOUND)
ENDIF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/visit_dist_data.tar.gz)
ENDIF()


0 comments on commit a7cc804

Please sign in to comment.