-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I link with a non platform .framework? (that is not in the systems framework folder) #175
Comments
I haven't tried it with OSX frameworks yet, but fips defines a set of standard directories where it searches for link libraries both in the main project and dependencies with the naming convention So you could try putting the Vulkan framework file into This is where the linker search path setup happens:
|
Tried to put the framework here: |
The name should be 'lib' not 'libs' (I know it should be 'libs') |
ups... well tried it now with 'lib' still does not work |
hmm the reason is probably that it's doing a find_library() here: Line 64 in e4abb25
Another thing you could try is simply a |
Now it does not work silently using (no error from ./fips gen) |
I tried to add the Vulkan .framework file from https://vulkan.lunarg.com/sdk/home to a fips project.
I just put the file in the fips project root and tried to use it with
fips_frameworks_osx(vulkan)
but that did not work, I guess that macro does not search in the project root.
The text was updated successfully, but these errors were encountered: