File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -604,13 +604,19 @@ set DEPENDENCY_DIR=%INSTALL_DIR%\%DEPENDENCY_NAME%
604604
605605IF EXIST " %INSTALL_DIR% \%DEPENDENCY_NAME% " (
606606 echo Found existing " %INSTALL_DIR% \%DEPENDENCY_NAME% " , skipping
607- goto :Successful
607+ goto :zstd
608608)
609609call :GitCloneAndCheckoutRevision https://gitlab.com/libeigen/eigen.git " %DEPENDENCY_DIR% " 3.3.9
610610
611611:zstd
612612set DEPENDENCY_NAME = zstd
613613set DEPENDENCY_DIR = %DEPS_DIR% \%DEPENDENCY_NAME%
614+
615+ IF EXIST " %INSTALL_DIR% \%DEPENDENCY_NAME% " (
616+ echo Found existing " %INSTALL_DIR% \%DEPENDENCY_NAME% " , skipping
617+ goto :rocksdb
618+ )
619+
614620call :GitCloneAndCheckoutRevision https://github.com/facebook/zstd " %DEPENDENCY_DIR% " v1.5.7
615621IF NOT %ERRORLEVEL% == 0 GOTO :Error
616622cd " %DEPENDENCY_DIR% " \build\cmake
@@ -624,6 +630,12 @@ IF NOT %ERRORLEVEL%==0 GOTO :Error
624630:rocksdb
625631set DEPENDENCY_NAME = rocksdb
626632set DEPENDENCY_DIR = %DEPS_DIR% \%DEPENDENCY_NAME%
633+
634+ IF EXIST " %INSTALL_DIR% \%DEPENDENCY_NAME% " (
635+ echo Found existing " %INSTALL_DIR% \%DEPENDENCY_NAME% " , skipping
636+ goto :Successful
637+ )
638+
627639cd %DEPS_DIR%
628640call :GitCloneAndCheckoutRevision https://github.com/facebook/rocksdb " %DEPENDENCY_DIR% " v9.11.2
629641IF NOT %ERRORLEVEL% == 0 GOTO :Error
You can’t perform that action at this time.
0 commit comments