mirror of
https://github.com/google/flatbuffers.git
synced 2026-07-04 21:11:10 +00:00
[CMake] Renames BUILD files (#6457)
* Renamed build to build.bazel to stop xcode from complaining about it * Renamed all build to build.bazel * Fixes small ci issue
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -2,6 +2,7 @@
|
|||||||
*_wire.bin
|
*_wire.bin
|
||||||
.DS_Store
|
.DS_Store
|
||||||
**/.build
|
**/.build
|
||||||
|
build
|
||||||
**/Packages
|
**/Packages
|
||||||
/*.xcodeproj
|
/*.xcodeproj
|
||||||
**/xcuserdata/
|
**/xcuserdata/
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
licenses(["notice"])
|
|
||||||
|
|
||||||
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
|
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
|
||||||
|
|
||||||
|
licenses(["notice"])
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//visibility:public"],
|
default_visibility = ["//visibility:public"],
|
||||||
)
|
)
|
||||||
@@ -1,9 +1,10 @@
|
|||||||
|
# @unused
|
||||||
|
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//visibility:private"],
|
default_visibility = ["//visibility:private"],
|
||||||
)
|
)
|
||||||
|
|
||||||
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
|
|
||||||
|
|
||||||
# Public flatc library to compile flatbuffer files at runtime.
|
# Public flatc library to compile flatbuffer files at runtime.
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "flatbuffers",
|
name = "flatbuffers",
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
load("@rules_cc//cc:defs.bzl", "cc_test")
|
load("@rules_cc//cc:defs.bzl", "cc_test")
|
||||||
|
load("//:build_defs.bzl", "flatbuffer_cc_library")
|
||||||
|
|
||||||
package(default_visibility = ["//visibility:private"])
|
package(default_visibility = ["//visibility:private"])
|
||||||
|
|
||||||
@@ -70,7 +71,6 @@ cc_test(
|
|||||||
)
|
)
|
||||||
|
|
||||||
# Test bzl rules
|
# Test bzl rules
|
||||||
load("//:build_defs.bzl", "flatbuffer_cc_library")
|
|
||||||
|
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "test_assert",
|
name = "test_assert",
|
||||||
Reference in New Issue
Block a user