small update to joyshocklibrary stuff

This commit is contained in:
Edward R. Gonzalez 2023-09-09 20:30:45 -04:00
parent d7399149bc
commit 97d3c7cb69
3 changed files with 3 additions and 4 deletions

View File

@ -10,6 +10,8 @@ Any code I do for this series will be here.
* `clean.ps1` - Cleans the project * `clean.ps1` - Cleans the project
* `update_deps.ps1` - Updates the project dependencies to their latest from their respective repos. (Not done automatically on build) * `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 ## Notes
Building requires msvc or llvm's clang + lld, and powershell 7 Building requires msvc or llvm's clang + lld, and powershell 7

View File

@ -5,9 +5,6 @@ $path_project = join-path $path_root "project"
$path_build = join-path $path_root "build" $path_build = join-path $path_root "build"
$path_dependencies = join-path $path_project "dependencies" $path_dependencies = join-path $path_project "dependencies"
# if ( Test-Path $path_dependencies ) {
# Remove-Item $path_dependencies -Recurse
# }
if ( Test-Path $path_project ) { if ( Test-Path $path_project ) {
Remove-Item $path_build -Recurse Remove-Item $path_build -Recurse
} }

View File

@ -27,7 +27,7 @@ Move-Item -Path (Join-Path $path_temp "gen.hpp") -Destination $path_
#region JoyShockLibrary #region JoyShockLibrary
$url_jsl_repo = "https://github.com/JibbSmart/JoyShockLibrary.git" $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/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 = Join-Path $path_temp "JoyShockLibraryRepo"
$path_jsl_repo_code = Join-Path $path_jsl_repo "JoyShockLibrary" $path_jsl_repo_code = Join-Path $path_jsl_repo "JoyShockLibrary"
$path_jsl_lib_zip = Join-Path $path_temp "JSL_3_0.zip" $path_jsl_lib_zip = Join-Path $path_temp "JSL_3_0.zip"