Update readme and rebuild script

This commit is contained in:
Edward R. Gonzalez 2023-10-10 13:10:49 -04:00
parent b7dadf3450
commit 22dfe4165b
3 changed files with 4 additions and 1 deletions

View File

@ -39,6 +39,7 @@ Features Done so far:
* Tailor made build system via powershell scripts
* Supports building the repo with msvc or clang
* Will only build a module if it detects changes (md5 is cached)
* Can stage codegen metaprograms to run before building the module
* Will automatically not run if app process is found (for engine module).
* Can emit exported mangled symbols for the engine module for hot-reload with the platform module without needing to use C linkage symbols or a complex hot-reload library (Live++, etc).

View File

@ -1,3 +1,5 @@
# Day 32
Vod was more of a pain to follow along than usual...
I updated the scripts to only bild each module if it detects changes (just using md5 hash on the files).

View File

@ -2,4 +2,4 @@ $clean = join-path $PSScriptRoot 'clean.ps1'
$build = join-path $PSScriptRoot 'build.ps1'
& $clean
& $build 'msvc' 'dev'
& $build @args