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
74f07337
Commit
74f07337
authored
Jun 22, 2016
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove RIAC module, CASH and Nexus, relates #477
parent
18e9821c
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1 addition
and
41 deletions
+1
-41
.gitmodules
.gitmodules
+0
-9
CMakeLists.txt
CMakeLists.txt
+1
-17
cash
cash
+0
-1
configure
configure
+0
-12
libcaf_riac
libcaf_riac
+0
-1
nexus
nexus
+0
-1
No files found.
.gitmodules
View file @
74f07337
[submodule "benchmarks"]
path = benchmarks
url = ../benchmarks.git
[submodule "nexus"]
path = nexus
url = ../nexus.git
[submodule "opencl"]
path = libcaf_opencl
url = ../opencl.git
[submodule "libcaf_riac"]
path = libcaf_riac
url = ../riac.git
[submodule "libcaf_python"]
path = libcaf_python
url = ../python.git
[submodule "cash"]
path = cash
url = ../cash.git
CMakeLists.txt
View file @
74f07337
...
...
@@ -51,7 +51,6 @@ endif()
if
(
NOT CAF_NO_IO
)
set
(
CAF_NO_IO no
)
else
()
set
(
CAF_NO_RIAC yes
)
set
(
CAF_NO_TOOLS yes
)
set
(
CAF_NO_PYTHON yes
)
endif
()
...
...
@@ -393,7 +392,7 @@ macro(add_caf_lib name)
set
(
${
lib_varname_static
}
${
static_target
}
)
endif
()
add_unit_tests
(
"
${
full_name
}
/test/*.cpp"
)
# add headers to include directories so other subprojects can use
RIAC
# add headers to include directories so other subprojects can use
them
include_directories
(
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/libcaf_
${
name
}
"
)
endmacro
()
...
...
@@ -446,9 +445,6 @@ if(NOT CAF_NO_OPENCL)
endif
()
endif
()
# build RIAC library if not being told otherwise
add_optional_caf_lib
(
riac
)
# build Python binding if not being told otherwise
if
(
NOT CAF_NO_PYTHON AND EXISTS
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/libcaf_python/CMakeLists.txt"
)
add_subdirectory
(
libcaf_python
)
...
...
@@ -460,12 +456,6 @@ add_optional_caf_binaries(examples)
# build tools if not being told otherwise
add_optional_caf_binaries
(
tools
)
# build nexus if not being told otherwise
add_optional_caf_binaries
(
nexus CAF_NO_RIAC
)
# build cash if not being told otherwise
add_optional_caf_binaries
(
cash CAF_NO_RIAC
)
# build benchmarks if not being told otherwise
add_optional_caf_binaries
(
benchmarks
)
...
...
@@ -603,9 +593,6 @@ invertYesNo(CAF_NO_IO CAF_BUILD_IO)
invertYesNo
(
CAF_NO_EXAMPLES CAF_BUILD_EXAMPLES
)
invertYesNo
(
CAF_NO_TOOLS CAF_BUILD_TOOLS
)
invertYesNo
(
CAF_NO_UNIT_TESTS CAF_BUILD_UNIT_TESTS
)
invertYesNo
(
CAF_NO_RIAC CAF_BUILD_RIAC
)
invertYesNo
(
CAF_NO_NEXUS CAF_BUILD_NEXUS
)
invertYesNo
(
CAF_NO_CASH CAF_BUILD_CASH
)
invertYesNo
(
CAF_NO_MEM_MANAGEMENT CAF_BUILD_MEM_MANAGEMENT
)
invertYesNo
(
CAF_NO_BENCHMARKS CAF_BUILD_BENCHMARKS
)
invertYesNo
(
CAF_NO_OPENCL CAF_BUILD_OPENCL
)
...
...
@@ -631,9 +618,6 @@ if(NOT CAF_NO_SUMMARY)
"
\n
Build tools:
${
CAF_BUILD_TOOLS
}
"
"
\n
Build examples:
${
CAF_BUILD_EXAMPLES
}
"
"
\n
Build unit tests:
${
CAF_BUILD_UNIT_TESTS
}
"
"
\n
Build riac:
${
CAF_BUILD_RIAC
}
"
"
\n
Build nexus:
${
CAF_BUILD_NEXUS
}
"
"
\n
Build cash:
${
CAF_BUILD_CASH
}
"
"
\n
Build benchmarks:
${
CAF_BUILD_BENCHMARKS
}
"
"
\n
Build opencl:
${
CAF_BUILD_OPENCL
}
"
"
\n
Build Python:
${
CAF_BUILD_PYTHON
}
"
...
...
cash
@
8ced15b1
Subproject commit 8ced15b1d03be8e371bc95cac4638f176a864594
configure
View file @
74f07337
...
...
@@ -61,10 +61,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
--no-curl-examples build without libcurl examples
--no-unit-tests build without unit tests
--no-opencl build without OpenCL module
--no-nexus build without nexus
--no-cash build without cash
--no-benchmarks build without benchmarks
--no-riac build without RIAC module
--no-tools build without CAF tools such as caf-run
--no-io build without I/O module
--no-python build without python binding
...
...
@@ -347,18 +344,9 @@ while [ $# -ne 0 ]; do
--with-python-config
=
*
)
append_cache_entry CAF_PYTHON_CONFIG_BIN FILEPATH
"
$optarg
"
;;
--no-nexus
)
append_cache_entry CAF_NO_NEXUS BOOL
yes
;;
--no-cash
)
append_cache_entry CAF_NO_CASH BOOL
yes
;;
--no-benchmarks
)
append_cache_entry CAF_NO_BENCHMARKS BOOL
yes
;;
--no-riac
)
append_cache_entry CAF_NO_RIAC BOOL
yes
;;
--no-tools
)
append_cache_entry CAF_NO_TOOLS BOOL
yes
;;
...
...
libcaf_riac
@
ca58f9e9
Subproject commit ca58f9e98611053e8f94b01ef8bb23149aee0ec5
nexus
@
8988cead
Subproject commit 8988ceadbd5c42c541443bbc0ba68292be493811
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