mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
27 lines
357 B
CMake
27 lines
357 B
CMake
include(Macros)
|
|
|
|
register_repository(
|
|
NAME
|
|
brotli
|
|
REPOSITORY
|
|
google/brotli
|
|
TAG
|
|
v1.1.0
|
|
)
|
|
|
|
register_cmake_command(
|
|
TARGET
|
|
brotli
|
|
LIBRARIES
|
|
brotlicommon
|
|
brotlidec
|
|
brotlienc
|
|
ARGS
|
|
-DBUILD_SHARED_LIBS=OFF
|
|
-DBROTLI_BUILD_TOOLS=OFF
|
|
-DBROTLI_EMSCRIPTEN=OFF
|
|
-DBROTLI_DISABLE_TESTS=ON
|
|
INCLUDES
|
|
c/include
|
|
)
|