mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
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)
16 lines
270 B
Plaintext
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
|