Skip to content

Commit 6c7ca2e

Browse files
committed
rq: rq2 structure with match allocate
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.
1 parent e8e9862 commit 6c7ca2e

File tree

4 files changed

+668
-0
lines changed

4 files changed

+668
-0
lines changed

resource/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ schema/test/schema_test01
66
schema/test/schema_test02
77
utilities/grug2dot
88
utilities/resource-query
9+
utilities/rq2

resource/utilities/CMakeLists.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ target_link_libraries(resource-query
1919
Boost::filesystem
2020
Boost::headers
2121
)
22+
add_executable(rq2
23+
rq2.cpp
24+
rq2.hpp
25+
)
26+
target_link_libraries(rq2
27+
resource
28+
PkgConfig::LIBEDIT
29+
)
2230

2331
add_subdirectory(test)
2432

0 commit comments

Comments
 (0)