Files
codeql/swift/.gitignore
Paolo Tranquilli b8b6b254bb Swift: cmake generator for better IDE support
A cmake generator in bazel is introduced allowing to import the Swift
extractor as a CMake project while keeping Bazel files as the source of
truth for the build.

Using the CMake project:
* requires bazel and clang to be installed and available on the command
  line
* does not require a previous bazel build, however
* will require a CMake reconfiguration for changes to generated code
  (like changes to the schema)
2022-10-13 15:25:24 +02:00

16 lines
270 B
Plaintext

# directory created by bazel run //swift:create-extractor-pack
/extractor-pack
# output files created by running tests
*.o
# compilation database
compile_commands.json
# CLion project data and build directories
/.idea
/cmake*
# VSCode default build directory
/build