Skip to content

Commit

Permalink
update antler-proj submodulde
Browse files Browse the repository at this point in the history
  • Loading branch information
Bucky Kittinger committed May 4, 2023
1 parent f9a08eb commit 5671062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/external/antler-proj
Submodule antler-proj updated 76 files
+0 −3 .gitmodules
+621 −0 .pylintrc
+1 −1 CMakeLists.txt
+6 −0 docs/examples/hello-world/README
+8 −0 docs/examples/hello-world/apps/hello/hello.cpp
+13 −0 docs/examples/hello-world/include/hello/hello.hpp
+7 −0 docs/examples/hello-world/project.yaml
+10 −0 docs/examples/lib_usage_example/README
+10 −0 docs/examples/lib_usage_example/apps/lib_usage/lib_usage.cpp
+13 −0 docs/examples/lib_usage_example/include/lib_usage/lib_usage.hpp
+11 −0 docs/examples/lib_usage_example/include/print_float/print_float.h
+3 −0 docs/examples/lib_usage_example/include/print_number/print_number.hpp
+5 −0 docs/examples/lib_usage_example/libs/print_float/print_float.c
+7 −0 docs/examples/lib_usage_example/libs/print_number/print_number.cpp
+27 −0 docs/examples/lib_usage_example/project.yaml
+5 −0 docs/examples/send-inline-example/README
+8 −0 docs/examples/send-inline-example/apps/hello/hello.cpp
+12 −0 docs/examples/send-inline-example/apps/send_inline/send_inline.cpp
+13 −0 docs/examples/send-inline-example/include/hello/hello.hpp
+14 −0 docs/examples/send-inline-example/include/send_inline/send_inline.hpp
+17 −0 docs/examples/send-inline-example/project.yaml
+64 −45 docs/man/antler-proj.1
+45 −30 docs/man/antler-proj.1.md
+12 −12 docs/project_manager_original_design.md
+0 −44 docs/sample1.yaml
+0 −35 docs/sample2.yaml
+0 −33 docs/sample3.yaml
+0 −420 docs/usecases.md
+110 −754 docs/users_guide.md
+0 −2 external/CMakeLists.txt
+0 −1 external/Mustache
+58 −76 include/antler/project/cmake.hpp
+2 −1 include/antler/project/dependency.hpp
+35 −2 include/antler/project/location.hpp
+0 −42 include/antler/project/mustache.hpp
+16 −8 include/antler/project/net_utils.hpp
+10 −3 include/antler/project/object.hpp
+3 −6 include/antler/project/populator.hpp
+15 −5 include/antler/project/project.hpp
+1 −1 include/antler/project/source.hpp
+4 −4 include/antler/project/version.hpp
+8 −2 include/antler/system/utils.hpp
+7 −10 src/CMakeLists.txt
+63 −40 src/cmake_templates.cpp
+1 −2 src/dependency.cpp
+17 −7 src/location.cpp
+1 −1 src/object.cpp
+17 −13 src/populator.cpp
+3 −2 src/project-parse.cpp
+7 −0 src/project-populate.cpp
+10 −8 src/project.cpp
+1 −0 tests/CMakeLists.txt
+0 −7 tests/dependency_tests.cpp
+16 −6 tests/location_tests.cpp
+20 −0 tests/net_utils_tests.cpp
+2 −2 tests/object_tests.cpp
+7 −1 tests/project_tests.cpp
+5 −2 tools/CMakeLists.txt
+29 −11 tools/add_to.hpp
+0 −27 tools/app_version.hpp
+21 −8 tools/build.hpp
+18 −3 tools/common.hpp
+6 −5 tools/init.hpp
+48 −11 tools/main.cpp
+7 −4 tools/populate.hpp
+13 −3 tools/remove_from.hpp
+142 −0 tools/tests/add_and_update.py
+3 −2 tools/tests/init_tests.py
+3 −0 tools/tests/pandb_contract/apps/test/greeting.cpp
+12 −0 tools/tests/pandb_contract/apps/test/test.cpp
+13 −0 tools/tests/pandb_contract/include/test/test.hpp
+13 −0 tools/tests/pandb_contract/project.yaml
+37 −0 tools/tests/populate_and_build.py
+23 −10 tools/tests/util.py
+36 −16 tools/update.hpp
+8 −5 tools/validate.hpp

0 comments on commit 5671062

Please sign in to comment.