mirror of
https://github.com/Ed94/HandmadeHero.git
synced 2024-12-21 22:14:43 -08:00
Update readme and rebuild script
This commit is contained in:
parent
b7dadf3450
commit
22dfe4165b
@ -39,6 +39,7 @@ Features Done so far:
|
|||||||
|
|
||||||
* Tailor made build system via powershell scripts
|
* Tailor made build system via powershell scripts
|
||||||
* Supports building the repo with msvc or clang
|
* 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
|
* Can stage codegen metaprograms to run before building the module
|
||||||
* Will automatically not run if app process is found (for engine 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).
|
* 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).
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
# Day 32
|
# 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).
|
||||||
|
@ -2,4 +2,4 @@ $clean = join-path $PSScriptRoot 'clean.ps1'
|
|||||||
$build = join-path $PSScriptRoot 'build.ps1'
|
$build = join-path $PSScriptRoot 'build.ps1'
|
||||||
|
|
||||||
& $clean
|
& $clean
|
||||||
& $build 'msvc' 'dev'
|
& $build @args
|
||||||
|
Loading…
Reference in New Issue
Block a user