Results 812 comments of Andre Weissflog

The name should be 'lib' not 'libs' (I know it should be 'libs')

hmm the reason is probably that it's doing a find_library() here: https://github.com/floooh/fips/blob/e4abb256caf23a48a37d1e418b2130f609540c0c/cmake/fips_private.cmake#L64, I think this was necessary to make linking against system frameworks work. Another thing you could try is...

Hmm, strange. What OS are you on, and what does ```java -version``` say? I'm on OSX 10.13.4 beta, and java 1.8.0_25, and it works here. I also tested on Windows...

If cmake was running without errors, it should be possible to add the names of the libraries created in the external projects via fips_deps() (e.g. if module1 results in the...

Hmm it didn't occur to me yet to simply modify FIPS_DEPLOY_DIR before running fips_setup() in order to move the target directory somewhere else. Does this work as expected apart from...

Ok, noted, I'll try to sneak in some time :) It may be necessary to move the setting into the fips.yml file though, because if it is just done inside...

Can you try the following in the Oryol directory? ``` > ./fips clean > ./fips set config android-make-debug > ./fips gen > ./fips build ``` This worked for me last...

Just to make sure, can you also try this: ``` > ./fips clean all > ./fips config android-make-debug ``` This works for me (on OSX), but I remember having seen...

Hmm that's very strange, I cannot reproduce this. Here's what I did now: - delete all Android SDK stuff from fips-sdks - install new Android SDK with ```./fips setup android```...

I tried something like this in the ```emsc-version``` branch for the emscripten SDK, you can basically add an optional SDK version string to ```./fips setup emscripten``` and use this to...