-
-
Notifications
You must be signed in to change notification settings - Fork 455
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleaning up the build to work with the new code, and on Windows.
- Loading branch information
1 parent
bc508e4
commit c39f190
Showing
5 changed files
with
59 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
# MSVC+Bazel can't stand for the header at the root, so we have to use the amalgamated one | ||
cc_library( | ||
name = "flecs", | ||
visibility = ["//visibility:public"], | ||
|
||
srcs = ["flecs.c"], | ||
hdrs = ["flecs.h"], | ||
) | ||
|
||
# In theory this is the correct build rule (if it was named `:flecs`) | ||
cc_library( | ||
name = "flecs-broken", | ||
|
||
srcs = glob(["src/**/*.h*", "src/**/*.c*", "src/**/*.inl"]), | ||
hdrs = glob(["include/**/*.h*"]), | ||
includes = ["include"], | ||
strip_include_prefix = "include", | ||
|
||
# because the MSVC include path generator is just wrong | ||
# see gh: https://github.com/bazelbuild/bazel/issues/8706#issuecomment-985133244 | ||
features = select({ | ||
"@bazel_tools//src/conditions:windows": ["-include_paths"], | ||
"//conditions:default": [], | ||
}), | ||
copts = select({ | ||
"@bazel_tools//src/conditions:windows": ["/Iinclude"], | ||
"//conditions:default": [], | ||
}), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters