mirror of
https://github.com/Ed94/HandmadeHero.git
synced 2024-11-10 03:44:53 -08:00
small update to joyshocklibrary stuff
This commit is contained in:
parent
d7399149bc
commit
97d3c7cb69
@ -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
|
||||||
|
@ -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
|
||||||
}
|
}
|
||||||
|
@ -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"
|
||||||
|
Loading…
Reference in New Issue
Block a user