Skip to content

Commit

Permalink
#967: Added ctpg script options parser (#454)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben authored Oct 9, 2024
1 parent 3bf2f0c commit b37f762
Show file tree
Hide file tree
Showing 16 changed files with 3,952 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_bazel_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ jobs:
working-directory: ./exaudfclient/
- name: Script Options Parser Tests
run: |
bazel test //base/script_options_parser/test/...
bazel test //base/script_options_parser/...
working-directory: ./exaudfclient/

2 changes: 1 addition & 1 deletion exaudfclient/base/javacontainer/script_options/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ cc_library(
hdrs = [":extractor.h", ":parser_legacy.h"],
srcs = [":parser.h", ":converter.h", ":converter.cc", ":parser_legacy.cc", ":extractor.cc",
":keywords.h", ":checksum.h", ":checksum.cc"],
deps = ["//base/script_options_parser:script_option_lines_parser", "//base:debug_message_h",
deps = ["//base/script_options_parser/legacy:script_option_lines_parser_legacy", "//base:debug_message_h",
"//base/exaudflib:header", "//base/exaudflib:exaudflib-deps", "//base/swig_factory:swig_factory_if"],
)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "base/javacontainer/script_options/parser_legacy.h"
#include "base/javacontainer/script_options/checksum.h"
#include "base/script_options_parser/script_option_lines.h"
#include "base/script_options_parser/legacy/script_option_lines.h"
#include "base/exaudflib/swig/swig_meta_data.h"
#include "base/swig_factory/swig_factory.h"

Expand Down
7 changes: 0 additions & 7 deletions exaudfclient/base/script_options_parser/BUILD
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
package(default_visibility = ["//visibility:public"])

cc_library(
name = "script_option_lines_parser",
hdrs = ["script_option_lines.h"],
srcs = ["script_option_lines.cc","script_option_lines.h"],
copts= ["-fno-lto"],
)
8 changes: 8 additions & 0 deletions exaudfclient/base/script_options_parser/ctpg/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package(default_visibility = ["//visibility:public"])

cc_library(
name = "script_option_lines_parser_ctpg",
hdrs = ["script_option_lines_ctpg.h"],
srcs = ["script_option_lines_ctpg.cc","ctpg.hpp"],
copts= ["-fno-lto"],
)
Loading

0 comments on commit b37f762

Please sign in to comment.