-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from GordonSmith/trunk
feat: Bump versions
- Loading branch information
Showing
32 changed files
with
795 additions
and
809 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,28 @@ | ||
|
||
add_library(cdt STATIC | ||
# Header files | ||
${GRAPHVIZ_LIB_DIR}/cdt/cdt.h | ||
${GRAPHVIZ_LIB_DIR}/cdt/dthdr.h | ||
# Header files | ||
${GRAPHVIZ_LIB_DIR}/cdt/cdt.h | ||
${GRAPHVIZ_LIB_DIR}/cdt/dthdr.h | ||
|
||
# Source files | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtclose.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtdisc.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtextract.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtflatten.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dthash.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtlist.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtmethod.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtopen.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtrenew.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtrestore.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtsize.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtstat.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtstrhash.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dttree.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtview.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtwalk.c | ||
# Source files | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtclose.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtdisc.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtextract.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtflatten.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dthash.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtlist.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtmethod.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtopen.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtrenew.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtrestore.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtsize.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtstat.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtstrhash.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dttree.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtview.c | ||
${GRAPHVIZ_LIB_DIR}/cdt/dtwalk.c | ||
) | ||
|
||
target_include_directories(cdt PRIVATE | ||
${GRAPHVIZ_LIB_DIR} | ||
${GRAPHVIZ_LIB_DIR}/cdt | ||
) | ||
${GRAPHVIZ_LIB_DIR} | ||
${GRAPHVIZ_LIB_DIR}/cdt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,32 @@ | ||
add_library(circogen STATIC | ||
# Header files | ||
${GRAPHVIZ_LIB_DIR}/circogen/block.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/blockpath.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/blocktree.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/circo.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/circpos.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/circular.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/deglist.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/edgelist.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/nodelist.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/nodeset.h | ||
# Header files | ||
${GRAPHVIZ_LIB_DIR}/circogen/block.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/blockpath.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/blocktree.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/circo.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/circpos.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/circular.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/deglist.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/edgelist.h | ||
${GRAPHVIZ_LIB_DIR}/circogen/nodelist.h | ||
|
||
# Source files | ||
${GRAPHVIZ_LIB_DIR}/circogen/block.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/blockpath.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/blocktree.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/circpos.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/circular.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/circularinit.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/deglist.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/edgelist.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/nodelist.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/nodeset.c | ||
# Source files | ||
${GRAPHVIZ_LIB_DIR}/circogen/block.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/blockpath.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/blocktree.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/circpos.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/circular.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/circularinit.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/deglist.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/edgelist.c | ||
${GRAPHVIZ_LIB_DIR}/circogen/nodelist.c | ||
) | ||
|
||
target_include_directories(circogen PRIVATE | ||
${GRAPHVIZ_LIB_DIR} | ||
${GRAPHVIZ_LIB_DIR}/cdt | ||
${GRAPHVIZ_LIB_DIR}/cgraph | ||
${GRAPHVIZ_LIB_DIR}/common | ||
${GRAPHVIZ_LIB_DIR}/gvc | ||
${GRAPHVIZ_LIB_DIR}/pack | ||
${GRAPHVIZ_LIB_DIR}/pathplan | ||
) | ||
${GRAPHVIZ_LIB_DIR} | ||
${GRAPHVIZ_LIB_DIR}/cdt | ||
${GRAPHVIZ_LIB_DIR}/cgraph | ||
${GRAPHVIZ_LIB_DIR}/common | ||
${GRAPHVIZ_LIB_DIR}/gvc | ||
${GRAPHVIZ_LIB_DIR}/pack | ||
${GRAPHVIZ_LIB_DIR}/pathplan) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,74 @@ | ||
PROJECT(common) | ||
|
||
add_library(common STATIC | ||
# Header files | ||
${GRAPHVIZ_LIB_DIR}/common/arith.h | ||
${GRAPHVIZ_LIB_DIR}/common/color.h | ||
${GRAPHVIZ_LIB_DIR}/common/colorprocs.h | ||
${GRAPHVIZ_BUILD_DIR}/lib/common/common/colortbl.h | ||
${GRAPHVIZ_LIB_DIR}/common/const.h | ||
${GRAPHVIZ_LIB_DIR}/common/entities.h | ||
${GRAPHVIZ_LIB_DIR}/common/geom.h | ||
${GRAPHVIZ_LIB_DIR}/common/geomprocs.h | ||
${GRAPHVIZ_LIB_DIR}/common/globals.h | ||
${GRAPHVIZ_LIB_DIR}/common/intset.h | ||
${GRAPHVIZ_LIB_DIR}/common/htmllex.h | ||
${GRAPHVIZ_LIB_DIR}/common/htmltable.h | ||
${GRAPHVIZ_LIB_DIR}/common/logic.h | ||
${GRAPHVIZ_LIB_DIR}/common/macros.h | ||
${GRAPHVIZ_LIB_DIR}/common/memory.h | ||
${GRAPHVIZ_LIB_DIR}/common/pointset.h | ||
${GRAPHVIZ_LIB_DIR}/common/ps_font_equiv.h | ||
${GRAPHVIZ_LIB_DIR}/common/render.h | ||
${GRAPHVIZ_LIB_DIR}/common/textspan.h | ||
${GRAPHVIZ_LIB_DIR}/common/textspan_lut.h | ||
${GRAPHVIZ_LIB_DIR}/common/types.h | ||
${GRAPHVIZ_LIB_DIR}/common/usershape.h | ||
${GRAPHVIZ_LIB_DIR}/common/utils.h | ||
# Header files | ||
${GRAPHVIZ_LIB_DIR}/common/arith.h | ||
${GRAPHVIZ_LIB_DIR}/common/color.h | ||
${GRAPHVIZ_LIB_DIR}/common/colorprocs.h | ||
${GRAPHVIZ_BUILD_DIR}/lib/common/common/colortbl.h | ||
${GRAPHVIZ_LIB_DIR}/common/const.h | ||
${GRAPHVIZ_LIB_DIR}/common/entities.h | ||
${GRAPHVIZ_LIB_DIR}/common/geom.h | ||
${GRAPHVIZ_LIB_DIR}/common/geomprocs.h | ||
${GRAPHVIZ_LIB_DIR}/common/globals.h | ||
${GRAPHVIZ_LIB_DIR}/common/intset.h | ||
${GRAPHVIZ_LIB_DIR}/common/htmllex.h | ||
${GRAPHVIZ_LIB_DIR}/common/htmltable.h | ||
${GRAPHVIZ_LIB_DIR}/common/logic.h | ||
${GRAPHVIZ_LIB_DIR}/common/macros.h | ||
${GRAPHVIZ_LIB_DIR}/common/memory.h | ||
${GRAPHVIZ_LIB_DIR}/common/pointset.h | ||
${GRAPHVIZ_LIB_DIR}/common/ps_font_equiv.h | ||
${GRAPHVIZ_LIB_DIR}/common/render.h | ||
${GRAPHVIZ_LIB_DIR}/common/textspan.h | ||
${GRAPHVIZ_LIB_DIR}/common/textspan_lut.h | ||
${GRAPHVIZ_LIB_DIR}/common/types.h | ||
${GRAPHVIZ_LIB_DIR}/common/usershape.h | ||
${GRAPHVIZ_LIB_DIR}/common/utils.h | ||
|
||
# Source files | ||
${GRAPHVIZ_LIB_DIR}/common/args.c | ||
${GRAPHVIZ_LIB_DIR}/common/arrows.c | ||
${GRAPHVIZ_LIB_DIR}/common/colxlate.c | ||
${GRAPHVIZ_LIB_DIR}/common/ellipse.c | ||
${GRAPHVIZ_LIB_DIR}/common/emit.c | ||
${GRAPHVIZ_LIB_DIR}/common/geom.c | ||
${GRAPHVIZ_LIB_DIR}/common/globals.c | ||
${GRAPHVIZ_LIB_DIR}/common/htmllex.c | ||
${GRAPHVIZ_LIB_DIR}/common/htmltable.c | ||
${GRAPHVIZ_LIB_DIR}/common/input.c | ||
${GRAPHVIZ_LIB_DIR}/common/intset.c | ||
${GRAPHVIZ_LIB_DIR}/common/labels.c | ||
${GRAPHVIZ_LIB_DIR}/common/ns.c | ||
${GRAPHVIZ_LIB_DIR}/common/memory.c | ||
${GRAPHVIZ_LIB_DIR}/common/output.c | ||
${GRAPHVIZ_LIB_DIR}/common/pointset.c | ||
${GRAPHVIZ_LIB_DIR}/common/postproc.c | ||
${GRAPHVIZ_LIB_DIR}/common/psusershape.c | ||
${GRAPHVIZ_LIB_DIR}/common/routespl.c | ||
${GRAPHVIZ_LIB_DIR}/common/shapes.c | ||
${GRAPHVIZ_LIB_DIR}/common/splines.c | ||
${GRAPHVIZ_LIB_DIR}/common/taper.c | ||
${GRAPHVIZ_LIB_DIR}/common/textspan.c | ||
${GRAPHVIZ_LIB_DIR}/common/textspan_lut.c | ||
${GRAPHVIZ_LIB_DIR}/common/timing.c | ||
${GRAPHVIZ_LIB_DIR}/common/utils.c | ||
${GRAPHVIZ_LIB_DIR}/common/xml.c | ||
# Source files | ||
${GRAPHVIZ_LIB_DIR}/common/args.c | ||
${GRAPHVIZ_LIB_DIR}/common/arrows.c | ||
${GRAPHVIZ_LIB_DIR}/common/colxlate.c | ||
${GRAPHVIZ_LIB_DIR}/common/ellipse.c | ||
${GRAPHVIZ_LIB_DIR}/common/emit.c | ||
${GRAPHVIZ_LIB_DIR}/common/geom.c | ||
${GRAPHVIZ_LIB_DIR}/common/globals.c | ||
${GRAPHVIZ_LIB_DIR}/common/htmllex.c | ||
${GRAPHVIZ_LIB_DIR}/common/htmltable.c | ||
${GRAPHVIZ_LIB_DIR}/common/input.c | ||
${GRAPHVIZ_LIB_DIR}/common/intset.c | ||
${GRAPHVIZ_LIB_DIR}/common/labels.c | ||
${GRAPHVIZ_LIB_DIR}/common/ns.c | ||
${GRAPHVIZ_LIB_DIR}/common/memory.c | ||
${GRAPHVIZ_LIB_DIR}/common/output.c | ||
${GRAPHVIZ_LIB_DIR}/common/pointset.c | ||
${GRAPHVIZ_LIB_DIR}/common/postproc.c | ||
${GRAPHVIZ_LIB_DIR}/common/psusershape.c | ||
${GRAPHVIZ_LIB_DIR}/common/routespl.c | ||
${GRAPHVIZ_LIB_DIR}/common/shapes.c | ||
${GRAPHVIZ_LIB_DIR}/common/splines.c | ||
${GRAPHVIZ_LIB_DIR}/common/taper.c | ||
${GRAPHVIZ_LIB_DIR}/common/textspan.c | ||
${GRAPHVIZ_LIB_DIR}/common/textspan_lut.c | ||
${GRAPHVIZ_LIB_DIR}/common/timing.c | ||
${GRAPHVIZ_LIB_DIR}/common/utils.c | ||
${GRAPHVIZ_LIB_DIR}/common/xml.c | ||
|
||
# Generated files | ||
${GRAPHVIZ_BUILD_DIR}/lib/common/htmlparse.c | ||
# Generated files | ||
${GRAPHVIZ_BUILD_DIR}/lib/common/htmlparse.c | ||
) | ||
|
||
target_include_directories(common PRIVATE | ||
${GRAPHVIZ_LIB_DIR} | ||
${GRAPHVIZ_LIB_DIR}/common | ||
${GRAPHVIZ_BUILD_DIR}/lib/common | ||
${GRAPHVIZ_LIB_DIR}/cdt | ||
${GRAPHVIZ_LIB_DIR}/cgraph | ||
${GRAPHVIZ_LIB_DIR}/gvc | ||
${GRAPHVIZ_LIB_DIR}/pack | ||
${GRAPHVIZ_LIB_DIR}/pathplan | ||
${GRAPHVIZ_LIB_DIR}/xdot | ||
${EXPAT_DIR}/lib | ||
${GRAPHVIZ_LIB_DIR} | ||
${GRAPHVIZ_LIB_DIR}/common | ||
${GRAPHVIZ_BUILD_DIR}/lib/common | ||
${GRAPHVIZ_LIB_DIR}/cdt | ||
${GRAPHVIZ_LIB_DIR}/cgraph | ||
${GRAPHVIZ_LIB_DIR}/gvc | ||
${GRAPHVIZ_LIB_DIR}/pack | ||
${GRAPHVIZ_LIB_DIR}/pathplan | ||
${GRAPHVIZ_LIB_DIR}/xdot | ||
${EXPAT_DIR}/lib | ||
) | ||
|
Oops, something went wrong.