openframeworks / openFrameworks

openFrameworks is a community-developed cross platform toolkit for creative coding in C++.
http://openframeworks.cc
Other
9.98k stars 2.55k forks source link

ofxAssimp pointing to other folder libs - not compatible with bleeding / latest libs #8064

Closed dimitre closed 3 months ago

dimitre commented 3 months ago

in addon_config.mk it is pointing to a specific file like this

ios:
    ADDON_LIBS=
    ADDON_LIBS=../ofxAssimpModelLoader/libs/assimp/lib/ios/assimp.a

osx:
    ADDON_LIBS=
    ADDON_LIBS=../ofxAssimpModelLoader/libs/assimp/lib/osx/assimp.a

we can try to make it work by updating to bleeding paths (will it work?) but in any case it won't work for both. any ideas? cc @danoli3

danoli3 commented 3 months ago

Yeah I’ll fix! Can use %

On Mon, 29 Jul 2024 at 10:05 AM, Dimitre @.***> wrote:

in addon_config.mk it is pointing to a specific file like this

ios: ADDON_LIBS= ADDON_LIBS=../ofxAssimpModelLoader/libs/assimp/lib/ios/assimp.a

osx: ADDON_LIBS= ADDON_LIBS=../ofxAssimpModelLoader/libs/assimp/lib/osx/assimp.a

we can try to make it work by updating to bleeding paths (will it work?) but in any case it won't work for both. any ideas? cc @danoli3 https://github.com/danoli3

— Reply to this email directly, view it on GitHub https://github.com/openframeworks/openFrameworks/issues/8064, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAGK2HC2OUD4J3CXYRJGY3DZOWBMDAVCNFSM6AAAAABLTHDDBKVHI2DSMVQWIX3LMV43ASLTON2WKOZSGQZTIMJYGIZTEMI . You are receiving this because you were mentioned.Message ID: @.***>

danoli3 commented 3 months ago

Looking into, it seems without the lines it works but it also is randomly including all libraries within other xcframeworks as well, in the compile list, which is weird, it also works, which is good but debugging this now in makefiles

Have fix though at : https://github.com/openframeworks/openFrameworks/pull/8065