diff --git a/README.md b/README.md index c08a907..bfad4ff 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,8 @@ Any code I do for this series will be here. * `clean.ps1` - Cleans the project * `update_deps.ps1` - Updates the project dependencies to their latest from their respective repos. (Not done automatically on build) +*Make sure to run `update_deps.ps1` before building for the first time.* + ## Notes Building requires msvc or llvm's clang + lld, and powershell 7 diff --git a/scripts/clean.ps1 b/scripts/clean.ps1 index 85ac3ef..7e45057 100644 --- a/scripts/clean.ps1 +++ b/scripts/clean.ps1 @@ -5,9 +5,6 @@ $path_project = join-path $path_root "project" $path_build = join-path $path_root "build" $path_dependencies = join-path $path_project "dependencies" -# if ( Test-Path $path_dependencies ) { -# Remove-Item $path_dependencies -Recurse -# } if ( Test-Path $path_project ) { Remove-Item $path_build -Recurse } diff --git a/scripts/update_deps.ps1 b/scripts/update_deps.ps1 index db6f03f..8bfd20d 100644 --- a/scripts/update_deps.ps1 +++ b/scripts/update_deps.ps1 @@ -27,7 +27,7 @@ Move-Item -Path (Join-Path $path_temp "gen.hpp") -Destination $path_ #region JoyShockLibrary $url_jsl_repo = "https://github.com/JibbSmart/JoyShockLibrary.git" # $url_jsl_zip = "https://github.com/JibbSmart/JoyShockLibrary/releases/download/v3.0/JSL_3_0.zip" -$url_jsl_zip = "https://github.com/Ed94/JoyShockLibrary/releases/download/not_for_public_use/JSL.zip" +$url_jsl_zip = "https://github.com/Ed94/JoyShockLibrary/releases/download/quick_fix/JSL.zip" $path_jsl_repo = Join-Path $path_temp "JoyShockLibraryRepo" $path_jsl_repo_code = Join-Path $path_jsl_repo "JoyShockLibrary" $path_jsl_lib_zip = Join-Path $path_temp "JSL_3_0.zip"