Skip to content

Commit

Permalink
example: add p03_api_example_dfa_creation_and_manipulation
Browse files Browse the repository at this point in the history
  • Loading branch information
marcofavorito committed Oct 20, 2024
1 parent 4b34f6c commit 3897f49
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/api/p03_api_example_dfa_creation_and_manipulation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# DFA Creation and Manipulation {#p03_api_example_dfa_creation_and_manipulation}
1 change: 1 addition & 0 deletions docs/p00_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ In this part of the documentation, we show examples of how to use the C++ API of

- @subpage p01_api_example_quickstart
- @subpage p02_api_example_dfa_representation
- @subpage p03_api_example_dfa_creation_and_manipulation
4 changes: 4 additions & 0 deletions examples/03_dfa_creation_and_manipulation/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
add_executable(dfa_creation_and_manipulation_example dfa_creation_and_manipulation.cpp)

target_include_directories(dfa_creation_and_manipulation_example PRIVATE ${UTILS_INCLUDE_PATH} ${PARSER_INCLUDE_PATH} ${SYNTHESIS_INCLUDE_PATH} ${EXT_INCLUDE_PATH})
target_link_libraries(dfa_creation_and_manipulation_example ${PARSER_LIB_NAME} ${SYNTHESIS_LIB_NAME} ${UTILS_LIB_NAME} ${LYDIA_LIBRARIES})
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
int main(int argc, char ** argv) {
}

0 comments on commit 3897f49

Please sign in to comment.