13 Star 45 Fork 20

Gitee 极速下载/TimescaleDB

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/timescale/timescaledb/
克隆/下载
bootstrap.bat 774 Bytes
一键复制 编辑 原始数据 按行查看 历史
Erik Nordström 提交于 2018-08-29 22:42 . Refactor telemetry and fixes
@echo off
:: This bootstrap scripts set up the build environment for TimescaleDB
:: Any flags will be passed on to CMake, e.g.,
:: ./bootstrap.bat -DCMAKE_BUILD_TYPE="Debug"
:: Get source directory to build from
set ORIG=%0
for %%F in (%ORIG%) do set SRC_DIR=%%~dpF
SET BUILD_DIR=./build
IF EXIST "%BUILD_DIR%" (
setlocal EnableDelayedExpansion
ECHO Build system already initialized in %BUILD_DIR%
SET /P resp="Do you want to remove it (this is IMMEDIATE and PERMANENT), y/n? "
IF "!resp!" == "y" (
rd /s /q "%BUILD_DIR%"
) ELSE (
ECHO Exiting
EXIT
)
)
mkdir "%BUILD_DIR%"
cd "%BUILD_DIR%"
cmake %SRC_DIR% -A x64 %*
ECHO ---
ECHO TimescaleDB build system initialized in %BUILD_DIR%.
ECHO To compile, do:
ECHO cmake --build %BUILD_DIR% --config Release
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/mirrors/TimescaleDB.git
[email protected]:mirrors/TimescaleDB.git
mirrors
TimescaleDB
TimescaleDB
main

搜索帮助