Skip to content

Commit

Permalink
another try
Browse files Browse the repository at this point in the history
  • Loading branch information
dantti committed Jun 20, 2024
1 parent 711fb91 commit cb88dd6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit cb88dd6

Please sign in to comment.