Andre Weissflog
Andre Weissflog
Nice, sound like an interesting target for Oryol and my KC emulator. I'll keep it in mind, but can't promise a deadline (unless you want to provide a pull request?)...
PS: I wonder if support could be added without adding a whole new platform, but instead simply a 'Linux flavour', for instance, for RaspberryPi I simply added a cmake option,...
Hmm this probably will not work when several independent projects depend on the same dependency project (similar problem to tag/branch clashes on the same imported project).
Better idea: define a new 'explicit' imports mode in the fips.yml (for backwards-compatibility): ``` yaml import-mode: explicit # (vs. 'implicit' or 'automatic' which is the default) ``` In explicit mode,...
I'm not sure yet where the fips_import_glew() would go, I've been thinking into the root CMakeLists,txt file, like ``` if (NOT FIPS_IMPORT) fips_import_glew() fips_import_glfw() endif() ``` Putting it inside fips_begin_app...
Good point. I'm currently thinking of not trying to do some sort of automatic import resolution at all in 'explicit import mode'. It's a bit tricky because the import mechanism...
Ok, I have implemented a manual module import feature. This new 'no_auto_import' policy must be switched on in the fips.yml file, and then in the root CMakeLists.txt file, the required/wanted...
...ok I have also converted the oryol-test-app project to use the manual import, the project is indeed much smaller now (fips still needs to fetch all the dependencies, but they...
I don't have a better idea to offer how to handle the signing password at the moment. I'll try to improve the mobile stuff after I'm done with the Metal...
...this could be useful: https://github.com/sakra/cotire/blob/master/MANUAL.md