diff --git a/CMake/SiloFindSzip.cmake b/CMake/SiloFindSzip.cmake index 3b1404c9..bd3be970 100644 --- a/CMake/SiloFindSzip.cmake +++ b/CMake/SiloFindSzip.cmake @@ -75,6 +75,7 @@ if(SZIP_FOUND) set(HAVE_LIBSZ 1) if(WIN32) get_target_property(SZIP_DLL szip IMPORTED_LOCATION_RELEASE ) + if(SILO_ENABLE_SILEX OR SILO_ENABLE_BROWSER) install(FILES ${SZIP_DLL} DESTINATION bin PERMISSIONS OWNER_READ OWNER_WRITE diff --git a/CMake/SiloFindZlib.cmake b/CMake/SiloFindZlib.cmake index a98044e1..6ada9f1b 100644 --- a/CMake/SiloFindZlib.cmake +++ b/CMake/SiloFindZlib.cmake @@ -76,6 +76,7 @@ if(ZLIB_FOUND) set(HAVE_ZLIB_H 1) if(WIN32) get_target_property(ZLIB_DLL zlib IMPORTED_LOCATION_RELEASE) + if(SILO_ENABLE_SILEX OR SILO_ENABLE_BROWSER) install(FILES ${ZLIB_DLL} DESTINATION bin PERMISSIONS OWNER_READ OWNER_WRITE diff --git a/config-site/steppenwolf.cmake b/config-site/steppenwolf.cmake index bc9c65bd..7caeb4ca 100644 --- a/config-site/steppenwolf.cmake +++ b/config-site/steppenwolf.cmake @@ -56,7 +56,6 @@ # config-site for STEPPENWOLF, a Windows system. ### -### # Helpers for TP lib location ### set(TP_DIR C:/A_Visit/ForRegression/visit-deps/windowsbuild/MSVC2022) @@ -98,4 +97,3 @@ silo_option_default(VAR SILO_ENABLE_PYTHON_MODULE VALUE ON TYPE BOOL) # enable tests silo_option_default(VAR SILO_ENABLE_TESTS VALUE ON TYPE BOOL) - diff --git a/tools/python/CMakeLists.txt b/tools/python/CMakeLists.txt index b7c89dc3..b6fe7298 100644 --- a/tools/python/CMakeLists.txt +++ b/tools/python/CMakeLists.txt @@ -98,6 +98,7 @@ install(FILES s2ex.py DESTINATION bin PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ GROUP_WRITE WORLD_READ) + add_custom_command(TARGET SiloPy POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/s2ex.py diff --git a/tools/python/pysilo.cpp b/tools/python/pysilo.cpp index cf1c740d..a0ac84ac 100644 --- a/tools/python/pysilo.cpp +++ b/tools/python/pysilo.cpp @@ -48,6 +48,7 @@ // National Security, LLC, and shall not be used for advertising or // product endorsement purposes. + #include #include #include "pydbfile.h"