Skip to content

Commit

Permalink
First upload
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreBurel committed May 30, 2023
0 parents commit cdfd4a1
Show file tree
Hide file tree
Showing 46 changed files with 10,913 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
git
Julia-1.8.5
node_modules
node-v20.2.0-win-x64
ext/conf/*
ext/info/*
ext/maps/*
26 changes: 26 additions & 0 deletions INSTALL.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
@echo off

set zp=%cd%\install\7zip\7za.exe

if not exist %cd%\git (
echo Decompressing git
%zp% x %cd%\install\git.zip
)

if not exist %cd%\node-v20.2.0-win-x64 (
echo Decompressing nodeJS
%zp% x %cd%\install\node-v20.2.0-win-x64.zip
)

if not exist %cd%\Julia-1.8.5 (
echo Decompressing Julia-1.8.5
%zp% x %cd%\install\Julia-1.8.5.zip
)

set JULIA_DEPOT_PATH=%cd%\Julia-1.8.5\depot
if not exist %JULIA_DEPOT_PATH% (
echo Installing Julia packages, it may take a while.
%cd%\Julia-1.8.5\bin\julia.exe -e "using Pkg; Pkg.add.([\"Base64\", \"Combinatorics\", \"Dates\", \"DelimitedFiles\", \"GZip\", \"HTTP\", \"Images\", \"JSON\", \"OrderedCollections\", \"Test\", \"XLSX\", \"ZipFile\", \"Logging\", \"LoggingExtras\", \"Gzip_jll\", \"FilesystemDatastructures\"])"
)

pause
Loading

0 comments on commit cdfd4a1

Please sign in to comment.