1 Star 0 Fork 0

NordWarrorWythe/timescaledb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/NordWarrorWythe/timescaledb.git
git@gitee.com:NordWarrorWythe/timescaledb.git
NordWarrorWythe
timescaledb
timescaledb
main

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385