Results 126 issues of Andre Weissflog

There are projects which only need to import external dependencies for their sample executables, but not when importing the project somewhere else. For this, and similar requirements, it should be...

feature

It's worth a try to generate a single source file per module which includes all .cc files during a cmake run, and only compile this single source file, and check...

planning

- fips_vs_warning_level() and fips_vs_disable_warnings() need to be mentioned in the docs pages - new OUT_OF_SOURCE option in fips_generate()

reminder

Currently when building DLLs, the DLL itself is copied to the deploy directory, but not the static .lib file needed to link the DLL. fips should take of this automatically....

bug

Currently fips doesn't modify the system environment (e.g. the path variable), but requires the 'fips' and 'fips.cmd' proxy scripts in each project. Think about whether the 'traditional' model is better...

planning
reminder

- switch on ccache: './fips set ccache on' - set a ninja or make config: './fips set config osx-ninja-release' - clean: './fips clean all' - build: './fips build' Compile errors...

bug

...otherwise the validation layers will be disabled even in debug build.

See here: https://github.com/ziglang/zig/issues/89#issuecomment-1180324510 Changing the bindings manually for the new syntax triggers problems further down though: - in the stage2 compiler, the triangle sample just renders a blank screen -...

This means small structs used as function args or return values no longer need to be padded to become bigger than 16 bytes, so the ```SOKOL_ZIG_BINDINGS``` hack can be removed...

reminder

See this twitter thread: https://twitter.com/FlohOfWoe/status/1325427548650532864 Currently it's easy to miss the mouse-hover tooltip with the absolute time, especially in strings like this: ![image](https://user-images.githubusercontent.com/1699414/98466705-92d13e00-21d1-11eb-891c-71a8e99ec2e0.png) The relative time "29 days ago" is...