Andre Weissflog
Andre Weissflog
Can you check whether at least the duplicate symbols you had on Friday are fixed with this oryol commit? I'm basically making the header search for TBUI absolute: https://github.com/floooh/oryol/commit/0cc9f27f8f338954912ef9fed0674c845d8a8313
Meh, guess I should create a standalone TBUI sample to catch errors like that and catch regressions. Is your code which reproduces this on github?
Yeah, the visual studio exception-related flags are utterly confusing. I'll be mainly on Windows in the next few weeks, may be I'll get around to look into it.
Also allow a '#' to define a git branch or tag, e.g.: ``` ./fips clone floooh/oryol#fips ./fips clone https://github.com/floooh/oryol.git#fips ./fips clone [email protected]:floooh/oryol.git#fips ```
Hmm that's an interesting idea... at least with the libs I have 'fipsified' so far this should be possible. For instance in fips-glfw (https://github.com/floooh/fips-glfw) I'm basically ignoring the glfw CMakeLists.txt...
I think the next step would be a more elaborate way to define an import: ``` yaml imports: fips-hello-dep: # name of the import, will be the directory name #...
I have started to implement this, currently only git: and branch: is implemented (branch: can be a branch or a tag). Directly git-cloning an untagged revision doesn't seem as trivial...
The ability to override 2nd level imports of an imported module is a nice feature, I'll open a separate ticket for this.
Hi @fungos, I did a quick check of fips-recast on Windows and Mac, all the static libs seem to compile fine, the only problem I found is in RecastDemo that...
@fungos: Oh wait, I _did_ have to do a change in the CMakeLists.txt file. The set_target_properties here: https://github.com/fungos/fips-recast/blob/master/CMakeLists.txt#L117 ...needs to go below the fips_end_app(), since the target is actually only...