RStanbouly

Results 8 comments of RStanbouly

If it helps, the big issue would be that breakpoints don't work in Appcode using rules_xcodeproj despite importing the lldbinit and matching the environment-variables that are being used.

Woops, apologies, I accidentally did not have my followup comment outside of the code portion. I'm looking to not have to set the tag at all, and instead have the...

The CC Library looked like ``` cc_library( name = "testLibrary", srcs = ["CxxTest.cpp"], hdrs = ["CxxTest.hpp"], visibility = ["//visibility:public"], ) ``` Which upon adding to a swift_library as a dependency,...

I've successfully been able to have the modulemap generated when doing ``` cc_library( name = "testLibrary", srcs = ["CxxTest.cpp"], hdrs = ["CxxTest.hpp"], tags = ["swift_module=testLibrary"], visibility = ["//visibility:public"], deps =...

Apologies, I'm unsure as to what you're referring to? Like, where they're located in the project folder structure?

Ahh ``` # rule identifiers to exclude from running # list of rules here: https://realm.github.io/SwiftLint/rule-directory.html disabled_rules: - cyclomatic_complexity - comment_spacing - weak_delegate - todo - notification_center_detachment - file_length - function_body_length...

Is there a way for me to debug this @bealex ?