@@ -35,7 +35,38 @@ endif()
3535set (CMAKE_INSTALL_NAME_DIR "${CMAKE_INSTALL_PREFIX} /${CMAKE_INSTALL_LIBDIR} " )
3636
3737add_library (handlegraph_objs OBJECT
38- src/handle.cpp
38+ src/deletable_handle_graph.cpp
39+ src/handle_graph.cpp
40+ src/mutable_handle_graph.cpp
41+ src/path_metadata.cpp
42+ src/mutable_path_metadata.cpp
43+ src/path_handle_graph.cpp
44+ src/path_position_handle_graph.cpp
45+ src/mutable_path_handle_graph.cpp
46+ src/ranked_handle_graph.cpp
47+ src/serializable.cpp
48+ src/snarl_decomposition.cpp
49+ src/trivially_serializable.cpp
50+ src/types.cpp
51+ src/copy_graph.cpp
52+ src/append_graph.cpp
53+ src/are_equivalent.cpp
54+ src/find_tips.cpp
55+ src/topological_sort.cpp
56+ src/apply_orientations.cpp
57+ src/is_single_stranded.cpp
58+ src/count_walks.cpp
59+ src/eades_algorithm.cpp
60+ src/dagify.cpp
61+ src/strongly_connected_components.cpp
62+ src/find_shortest_paths.cpp
63+ src/dijkstra.cpp
64+ src/is_acyclic.cpp
65+ src/reverse_complement.cpp
66+ src/split_strands.cpp
67+ src/chop.cpp
68+ src/weakly_connected_components.cpp
69+ src/extend.cpp
3970 src/include/handlegraph/handle_graph.hpp
4071 src/include/handlegraph/mutable_handle_graph.hpp
4172 src/include/handlegraph/deletable_handle_graph.hpp
@@ -48,6 +79,25 @@ add_library(handlegraph_objs OBJECT
4879 src/include/handlegraph/util.hpp
4980 src/include/handlegraph/types.hpp
5081 src/include/handlegraph/iteratee.hpp
82+ src/include/handlegraph/algorithms/copy_graph.hpp
83+ src/include/handlegraph/algorithms/append_graph.hpp
84+ src/include/handlegraph/algorithms/are_equivalent.hpp
85+ src/include/handlegraph/algorithms/find_tips.hpp
86+ src/include/handlegraph/algorithms/topological_sort.hpp
87+ src/include/handlegraph/algorithms/apply_orientations.hpp
88+ src/include/handlegraph/algorithms/is_single_stranded.hpp
89+ src/include/handlegraph/algorithms/count_walks.hpp
90+ src/include/handlegraph/algorithms/eades_algorithm.hpp
91+ src/include/handlegraph/algorithms/dagify.hpp
92+ src/include/handlegraph/algorithms/strongly_connected_components.hpp
93+ src/include/handlegraph/algorithms/find_shortest_paths.hpp
94+ src/include/handlegraph/algorithms/dijkstra.hpp
95+ src/include/handlegraph/algorithms/reverse_complement.hpp
96+ src/include/handlegraph/algorithms/is_acyclic.hpp
97+ src/include/handlegraph/algorithms/split_strands.hpp
98+ src/include/handlegraph/algorithms/chop.hpp
99+ src/include/handlegraph/algorithms/weakly_connected_components.hpp
100+ src/include/handlegraph/algorithms/extend.hpp
51101 )
52102
53103# Use the include directory when building the objects.
0 commit comments