diff --git a/.gitignore b/.gitignore index 217e2bf7..db33ecc3 100755 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,7 @@ tags test-driver ylwrap compile +CMakeFiles +CMakeCache.txt +*.cmake +*.so diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0bcc6293..66fdd7b5 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -40,6 +40,7 @@ add_library(nutils set.c to_newick.c concat.c + readline.c ) # simple cases diff --git a/src/address_parser_status.h b/src/address_parser_status.h index f149d778..6d74f18a 100755 --- a/src/address_parser_status.h +++ b/src/address_parser_status.h @@ -13,4 +13,4 @@ enum address_parser_status_type { * returns either \c NULL or the top-level enode of the address, so we need to * use an extern variable to convey its status. */ -enum address_parser_status_type address_parser_status; +extern enum address_parser_status_type address_parser_status; diff --git a/tests/.gitignore b/tests/.gitignore index d3a286d6..32e74bf6 100755 --- a/tests/.gitignore +++ b/tests/.gitignore @@ -22,6 +22,7 @@ test_order_tree test_readline test_rnode test_rnode_iterator +test_set test_subtree test_svg_graph_radial test_to_newick