Skip to content

Commit 15ae90c

Browse files
authored
Merge pull request #4696 from hannes-steffenhagen-diffblue/fix/missing-dependencies
Fix some missing dependencies in goto-checker and goto-programs
2 parents 766b031 + 86be55e commit 15ae90c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ add_subdirectory(ansi-c)
8585
add_subdirectory(assembler)
8686
add_subdirectory(big-int)
8787
add_subdirectory(cpp)
88+
add_subdirectory(xmllang)
8889
add_subdirectory(goto-checker)
8990
add_subdirectory(goto-programs)
9091
add_subdirectory(goto-symex)
@@ -96,7 +97,6 @@ add_subdirectory(linking)
9697
add_subdirectory(pointer-analysis)
9798
add_subdirectory(solvers)
9899
add_subdirectory(util)
99-
add_subdirectory(xmllang)
100100

101101
add_subdirectory(cbmc)
102102
add_subdirectory(goto-cc)

src/goto-checker/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ add_library(goto-checker ${sources})
33

44
generic_includes(goto-checker)
55

6-
target_link_libraries(goto-checker goto-programs goto-symex solvers util)
6+
target_link_libraries(goto-checker goto-programs goto-symex solvers util xml goto-instrument-lib)

src/goto-programs/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ add_library(goto-programs ${sources})
33

44
generic_includes(goto-programs)
55

6-
target_link_libraries(goto-programs util assembler langapi analyses linking)
6+
target_link_libraries(goto-programs util assembler langapi analyses linking ansi-c)

0 commit comments

Comments
 (0)