added latest gencpp to dependencies

This commit is contained in:
Edward R. Gonzalez 2023-09-08 12:54:02 -04:00
parent 840d794f48
commit cbcea2e02c
2 changed files with 23105 additions and 2 deletions

23103
project/dependencies/gen.hpp Normal file

File diff suppressed because it is too large Load Diff

View File

@ -12,10 +12,10 @@ $path_temp = join-path $path_dependencies "temp"
$url = "https://github.com/Ed94/gencpp/releases/download/latest/gencpp_singleheader.zip" $url = "https://github.com/Ed94/gencpp/releases/download/latest/gencpp_singleheader.zip"
$destinationZip = join-path $path_temp "gencpp_singleheader.zip" $destinationZip = join-path $path_temp "gencpp_singleheader.zip"
if ( Test-Path $path_dependencies -eq $false ) { if ( (Test-Path $path_dependencies) -eq $false ) {
New-Item -ItemType Directory -Path $path_dependencies New-Item -ItemType Directory -Path $path_dependencies
} }
if ( Test-Path $path_temp -eq $false ) { if ( (Test-Path $path_temp) -eq $false ) {
New-Item -ItemType Directory -Path $path_temp New-Item -ItemType Directory -Path $path_temp
} }