Skip to content

Commit

Permalink
rq: rq2 structure with match allocate
Browse files Browse the repository at this point in the history
Problem: resource query does not utilize reapi. This means that
new functionality must be implemented in both places and that
reapi is not tested with automated ci tests and code coverage.

Create a new resource query that uses reapi.
  • Loading branch information
zekemorton committed Dec 14, 2023
1 parent e8e9862 commit 6c7ca2e
Show file tree
Hide file tree
Showing 4 changed files with 668 additions and 0 deletions.
1 change: 1 addition & 0 deletions resource/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ schema/test/schema_test01
schema/test/schema_test02
utilities/grug2dot
utilities/resource-query
utilities/rq2
8 changes: 8 additions & 0 deletions resource/utilities/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ target_link_libraries(resource-query
Boost::filesystem
Boost::headers
)
add_executable(rq2
rq2.cpp
rq2.hpp
)
target_link_libraries(rq2
resource
PkgConfig::LIBEDIT
)

add_subdirectory(test)

Loading

0 comments on commit 6c7ca2e

Please sign in to comment.