diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9ed2bfbf..db898d79 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -121,7 +121,11 @@ jobs: run: | ls build ls build\bin - dumpbin /DEPENDENTS build\bin\test_commands.exe + ls build/bin + + - name: Check DLL Dependencies + if: ${{ failure() && runner.os == 'Windows' }} + run: dumpbin /DEPENDENTS build\bin\test_commands.exe - name: Read tests log when it fails uses: andstor/file-reader-action@v1 diff --git a/CMakeLists.txt b/CMakeLists.txt index 7b2307ae..679b7ba6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -229,7 +229,7 @@ endif() option(WITH_INTERNAL_GRAPHVIZ "Enable build of external project Graphviz" ${WITH_INTERNAL_GRAPHVIZ_DEFAULT}) add_feature_info("Internal build of Graphviz" WITH_INTERNAL_GRAPHVIZ "enable with WITH_INTERNAL_GRAPHVIZ=ON") -set(WITH_STATIC_GRAPHVIZ OFF) # Whether the Graphviz build we're using is static or not -- WIP +set(WITH_STATIC_GRAPHVIZ ON) # Whether the Graphviz build we're using is static or not -- WIP if(WITH_INTERNAL_GRAPHVIZ) include_directories(${PROJECT_SOURCE_DIR}/src/fwd_headers)