jcweaver997

Results 5 comments of jcweaver997

``` PS C:\Users\Jweaver\.vmodules\irishgreencitrus\raylibv> $env:VERBOSE = '1' PS C:\Users\Jweaver\.vmodules\irishgreencitrus\raylibv> v run installraylib.vsh Cloning Raylib v4.2.0 to C:\Users\Jweaver\AppData\Local\Temp/raylib_01GBZ8KA5VA2TRH2JDKPE8TVXD ... This may take a few minutes depending on the speed of your internet...

Seems like line 41 in installraylib.vsh is incorrect, I believe it should be `ccinclude = '${@VEXEROOT}/thirdparty/tcc/include'` Even with this change, I still get the same result: ``` PS C:\Users\Jweaver\.vmodules\irishgreencitrus\raylibv> v...

Hi, I tried adding the winapi full, and it did get a lot farther. This is the new output: ``` Compiling Raylib with V's tcc... Building raudio... Building rcore... In...

There is not: ``` src/main.v:13:22: error: unknown kind `args`, available are: `methods`, `fields`, `values`, `variants` or `attributes` 11 | fn register[T](){ 12 | $for method in T.methods { 13 |...

This one has a workaround, just create a local variable with the function ```v module main struct ClassInfo { func fn () = unsafe { nil } } pub fn...