Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
linphone-cmake-builder
Commits
1c7a2cba
Commit
1c7a2cba
authored
Mar 02, 2016
by
Ghislain MARY
Browse files
Fix bug in inexistent dependencies filtering.
parent
786385a4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
cmake/CMakeLists.txt
cmake/CMakeLists.txt
+1
-1
No files found.
cmake/CMakeLists.txt
View file @
1c7a2cba
...
@@ -461,7 +461,7 @@ macro(linphone_builder_filter_out_inexistent_dependencies PROJNAME)
...
@@ -461,7 +461,7 @@ macro(linphone_builder_filter_out_inexistent_dependencies PROJNAME)
list
(
FIND LINPHONE_BUILDER_INCLUDED_BUILDERS
${
_dep2
}
_found
)
list
(
FIND LINPHONE_BUILDER_INCLUDED_BUILDERS
${
_dep2
}
_found
)
list
(
FIND LINPHONE_BUILDER_INCLUDED_BUILDERS_TO_EXCLUDE
${
_dep2
}
_excluded_found
)
list
(
FIND LINPHONE_BUILDER_INCLUDED_BUILDERS_TO_EXCLUDE
${
_dep2
}
_excluded_found
)
list
(
FIND LINPHONE_BUILDER_EXTERNAL_SOURCE_PATH_BUILDERS
${
_dep2
}
_external_source_path_found
)
list
(
FIND LINPHONE_BUILDER_EXTERNAL_SOURCE_PATH_BUILDERS
${
_dep2
}
_external_source_path_found
)
if
((
_found GREATER -1
)
AND
(
_excluded_found EQUAL -1
)
AND
((
_external_source_path_found EQUAL -1
)
OR
(
NOT EP_
${
_dep2
}
_GROUPABLE
)))
if
((
_found GREATER -1
)
AND
(
_excluded_found EQUAL -1
)
AND
((
_external_source_path_found EQUAL -1
)
OR
(
NOT EP_
${
_dep2
}
_GROUPABLE
)
OR
(
NOT LINPHONE_BUILDER_GROUP_EXTERNAL_SOURCE_PATH_BUILDERS
)
))
list
(
APPEND _new_deps
${
_dep
}
)
list
(
APPEND _new_deps
${
_dep
}
)
endif
()
endif
()
endforeach
()
endforeach
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment