Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
a91780e5
Commit
a91780e5
authored
Nov 20, 2018
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add --libs-only convenience option
parent
493a280e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
8 deletions
+12
-8
configure
configure
+12
-8
No files found.
configure
View file @
a91780e5
...
...
@@ -65,8 +65,10 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
--no-io build without I/O module
--no-python build without python binding
--no-summary do not print configuration before building
--core-only sets no-examples, no-opencl, no-openssl,
no-tools, no-python, and no-io
--libs-only sets no-examples, no-tools, no-python,
and no-unit-tests
--core-only same as libs-only but also adds sets no-opencl,
no-openssl, and no-io
Debugging:
--with-runtime-checks build with requirement checks at runtime
...
...
@@ -386,13 +388,15 @@ while [ $# -ne 0 ]; do
--no-summary
)
append_cache_entry CAF_NO_SUMMARY BOOL
yes
;;
--libs-only
)
for
var
in
CAF_NO_TOOLS CAF_NO_PYTHON CAF_NO_EXAMPLES CAF_NO_UNIT_TESTS
;
do
append_cache_entry
$var
BOOL
yes
done
;;
--core-only
)
append_cache_entry CAF_NO_TOOLS BOOL
yes
append_cache_entry CAF_NO_IO BOOL
yes
append_cache_entry CAF_NO_PYTHON BOOL
yes
append_cache_entry CAF_NO_EXAMPLES BOOL
yes
append_cache_entry CAF_NO_OPENCL BOOL
yes
append_cache_entry CAF_NO_OPENSSL BOOL
yes
for
var
in
CAF_NO_TOOLS CAF_NO_PYTHON CAF_NO_EXAMPLES CAF_NO_UNIT_TESTS CAF_NO_IO CAF_NO_OPENCL CAF_NO_OPENSSL
;
do
append_cache_entry
$var
BOOL
yes
done
;;
--dev-mode
)
append_cache_entry CMAKE_BUILD_TYPE STRING Debug
...
...
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