Sander Mertens

Results 49 comments of Sander Mertens
trafficstars

Bake stores include files in the bake environment (under `$HOME/bake`). Adding the bake environment to your include path should fix the issue. Try adding these paths to the editor configuration...

I will keep this issue open for a bit longer, as I want to make sure bake integrates well with editors. I tried a few things with vscode, and ran...

Hmm, that is strange. Can you try rerunning bake setup with `--debug`? If that doesn't reveal anything, you can run the setup like this: ``` bake setup --local ``` That...

Bake does need a valid visual studio environment. This sounds like a similar issue as the one reported here: https://mail.google.com/mail/u/0/#inbox/FMfcgxwDrbnzBSgSKnqKNJMpFNFNgjGh (scroll down to the last comments) TL;DR: bake installs a...

Yes you're right! I have asked GitHub support to do this.

This has been on my wishlist for a while, and maybe it's time to implement it. You can currently build static binaries by adding the `static` property and set it...

There is! If you get the latest version of bake, you can try out the test framework alpha. In your project directory, first do: ``` bake new test ``` This...

I was going to say, "yes, you can do this by writing a driver for that test framework" but I thought about it some more and it may not be...

I agree. The current driver implementations for gcc/clang and msvc are tied to the platform bake is running on, which is inflexible. A feature/toolchain abstraction layer would address that. Do...