Created
July 18, 2022 10:07
-
-
Save germandiagogomez/fbc77951e400df039f0e73290710fc03 to your computer and use it in GitHub Desktop.
Adding a library with a previously-embedded and harcoded dependencies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sources = ['lzma.cpp'] | |
lzmaupp_plugin_dependencies = [ | |
core_dep, | |
dependency('zlib'), | |
dependency('liblzma'), | |
dependency('liblzmasdk') | |
] | |
lzmaupp_plugin_lib = library('lzmaupp', sources: sources, | |
dependencies: lzmaupp_plugin_dependencies) | |
lzmaupp_plugin_dep = declare_dependency(link_with: lzmaupp_plugin_lib) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment