-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bazel build on Linux initially (#509)
Co-authored-by: edwardewang <[email protected]>
- Loading branch information
1 parent
90e3b2f
commit 4d4f8c2
Showing
5 changed files
with
722 additions
and
0 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,24 @@ | ||
build --copt=-std=c99 | ||
build --cxxopt=-std=c++11 | ||
build --define BUILD_SHARED=ON | ||
build --define BUILD_STATIC=ON | ||
build --define BUILD_EXAMPLES=ON | ||
build --define BUILD_UNITTEST=OFF | ||
build --define WITH_PROTOCOL=OFF | ||
build --define WITH_EVPP=ON | ||
build --define WITH_HTTP=ON | ||
build --define WITH_HTTP_SERVER=ON | ||
build --define WITH_HTTP_CLIENT=ON | ||
build --define WITH_MQTT=OFF | ||
build --define ENABLE_UDS=OFF | ||
build --define USE_MULTIMAP=OFF | ||
build --define WITH_CURL=OFF | ||
build --define WITH_NGHTTP2=OFF | ||
build --define WITH_OPENSSL=OFF | ||
build --define WITH_GNUTLS=OFF | ||
build --define WITH_MBEDTLS=OFF | ||
build --define WITH_KCP=OFF | ||
build --define WITH_WEPOLL=ON | ||
build --define ENABLE_WINDUMP=OFF | ||
build --define BUILD_FOR_MT=OFF | ||
|
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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
# Bazel | ||
bazel-* | ||
MODULE.bazel | ||
MODULE.bazel.lock | ||
|
||
# Compiled Object files | ||
*.o | ||
*.lo | ||
|
Oops, something went wrong.