Skip to content

only export shared lib if allowed #253

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion uspace/lib/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ foreach l : libs
if install_shared_lib
install_files += [[ 'lib', _shared_lib.full_path(), _libname ]]
install_deps += [ _shared_lib ]
exported_devel_files += [ 'sharedlib', _shared_lib, _libname ]
endif

if install_shared_lib and install_debug_files
Expand Down Expand Up @@ -287,7 +288,6 @@ foreach l : libs
include_directories: includes,
dependencies: _shared_deps,
)
exported_devel_files += [ 'sharedlib', _shared_lib, _libname ]
endif

_static_lib = static_library(l, src,
Expand Down