mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
bin container has both so and exe
This commit is contained in:
parent
bb6839f982
commit
c366011c66
1 changed files with 1 additions and 1 deletions
|
@ -421,7 +421,7 @@ public class BaseCElementContentProvider implements ITreeContentProvider {
|
|||
for (int i = 0; i < celements.length; i++) {
|
||||
if (celements[i] instanceof IBinary) {
|
||||
IBinary bin = (IBinary)celements[i];
|
||||
if (bin.isExecutable()) {
|
||||
if (bin.isExecutable() || bin.isSharedLib()) {
|
||||
list.add(bin);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue