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
5f7ab1d5
Commit
5f7ab1d5
authored
Sep 18, 2014
by
Alex Mantel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename overlooked parts for shell to cash
parent
1f089dc6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
CMakeLists.txt
CMakeLists.txt
+7
-7
configure
configure
+3
-3
No files found.
CMakeLists.txt
View file @
5f7ab1d5
...
@@ -302,23 +302,23 @@ else()
...
@@ -302,23 +302,23 @@ else()
set
(
CAF_NO_NEXUS yes
)
set
(
CAF_NO_NEXUS yes
)
endif
()
endif
()
# build shell if not being told otherwise
# build shell if not being told otherwise
if
(
NOT CAF_NO_
SHELL AND EXISTS
"
${
CMAKE_SOURCE_DIR
}
/shell
/caf/"
)
if
(
NOT CAF_NO_
CASH AND EXISTS
"
${
CMAKE_SOURCE_DIR
}
/cash
/caf/"
)
if
(
NOT CAF_HAS_RIAC
)
if
(
NOT CAF_HAS_RIAC
)
message
(
WARNING
"cannot build shell without RIAC submodule"
)
message
(
WARNING
"cannot build shell without RIAC submodule"
)
set
(
CAF_NO_SHELL yes
)
set
(
CAF_NO_SHELL yes
)
else
()
else
()
message
(
STATUS
"Enter subdirectory
shell
"
)
message
(
STATUS
"Enter subdirectory
cash
"
)
add_subdirectory
(
shell
)
add_subdirectory
(
cash
)
if
(
CAF_BUILD_STATIC_ONLY
)
if
(
CAF_BUILD_STATIC_ONLY
)
add_dependencies
(
cash libcaf_riacStatic
)
add_dependencies
(
cash libcaf_riacStatic
)
else
()
else
()
add_dependencies
(
cash libcaf_riac
)
add_dependencies
(
cash libcaf_riac
)
endif
()
endif
()
set
(
CAF_NO_
SHELL
no
)
set
(
CAF_NO_
CASH
no
)
endif
()
endif
()
else
()
else
()
# make sure variable is set for build log
# make sure variable is set for build log
set
(
CAF_NO_
SHELL
yes
)
set
(
CAF_NO_
CASH
yes
)
endif
()
endif
()
# build benchmarks if not being told otherwise
# build benchmarks if not being told otherwise
if
(
NOT CAF_NO_BENCHMARKS AND EXISTS
"
${
CMAKE_SOURCE_DIR
}
/benchmarks/caf/"
)
if
(
NOT CAF_NO_BENCHMARKS AND EXISTS
"
${
CMAKE_SOURCE_DIR
}
/benchmarks/caf/"
)
...
@@ -391,7 +391,7 @@ endmacro()
...
@@ -391,7 +391,7 @@ endmacro()
invertYesNo
(
CAF_NO_EXAMPLES CAF_BUILD_EXAMPLES
)
invertYesNo
(
CAF_NO_EXAMPLES CAF_BUILD_EXAMPLES
)
invertYesNo
(
CAF_NO_UNIT_TESTS CAF_BUILD_UNIT_TESTS
)
invertYesNo
(
CAF_NO_UNIT_TESTS CAF_BUILD_UNIT_TESTS
)
invertYesNo
(
CAF_NO_NEXUS CAF_BUILD_NEXUS
)
invertYesNo
(
CAF_NO_NEXUS CAF_BUILD_NEXUS
)
invertYesNo
(
CAF_NO_
SHELL CAF_BUILD_SHELL
)
invertYesNo
(
CAF_NO_
CASH CAF_BUILD_CASH
)
invertYesNo
(
CAF_NO_MEM_MANAGEMENT CAF_BUILD_MEM_MANAGEMENT
)
invertYesNo
(
CAF_NO_MEM_MANAGEMENT CAF_BUILD_MEM_MANAGEMENT
)
invertYesNo
(
CAF_NO_BENCHMARKS CAF_BUILD_BENCHMARKS
)
invertYesNo
(
CAF_NO_BENCHMARKS CAF_BUILD_BENCHMARKS
)
invertYesNo
(
CAF_NO_OPENCL CAF_BUILD_OPENCL
)
invertYesNo
(
CAF_NO_OPENCL CAF_BUILD_OPENCL
)
...
@@ -415,7 +415,7 @@ message(STATUS
...
@@ -415,7 +415,7 @@ message(STATUS
"
\n
Build unit tests:
${
CAF_BUILD_UNIT_TESTS
}
"
"
\n
Build unit tests:
${
CAF_BUILD_UNIT_TESTS
}
"
"
\n
Build riac:
${
CAF_HAS_RIAC
}
"
"
\n
Build riac:
${
CAF_HAS_RIAC
}
"
"
\n
Build nexus:
${
CAF_BUILD_NEXUS
}
"
"
\n
Build nexus:
${
CAF_BUILD_NEXUS
}
"
"
\n
Build
shell:
${
CAF_BUILD_SHELL
}
"
"
\n
Build
cash:
${
CAF_BUILD_CASH
}
"
"
\n
Build benchmarks:
${
CAF_BUILD_BENCHMARKS
}
"
"
\n
Build benchmarks:
${
CAF_BUILD_BENCHMARKS
}
"
"
\n
Build opencl:
${
CAF_BUILD_OPENCL
}
"
"
\n
Build opencl:
${
CAF_BUILD_OPENCL
}
"
"
\n
"
"
\n
"
...
...
configure
View file @
5f7ab1d5
...
@@ -50,7 +50,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
...
@@ -50,7 +50,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
--no-unit-tests build without unit tests
--no-unit-tests build without unit tests
--no-opencl build without opencl
--no-opencl build without opencl
--no-nexus build without nexus
--no-nexus build without nexus
--no-
shell build without shell
--no-
cash build without cash
--no-benchmarks build without benchmarks
--no-benchmarks build without benchmarks
--no-riac build without riac
--no-riac build without riac
...
@@ -293,8 +293,8 @@ while [ $# -ne 0 ]; do
...
@@ -293,8 +293,8 @@ while [ $# -ne 0 ]; do
--no-nexus
)
--no-nexus
)
append_cache_entry CAF_NO_NEXUS BOOL
yes
append_cache_entry CAF_NO_NEXUS BOOL
yes
;;
;;
--no-
shell
)
--no-
cash
)
append_cache_entry CAF_NO_
SHELL
BOOL
yes
append_cache_entry CAF_NO_
CASH
BOOL
yes
;;
;;
--no-benchmarks
)
--no-benchmarks
)
append_cache_entry CAF_NO_BENCHMARKS BOOL
yes
append_cache_entry CAF_NO_BENCHMARKS BOOL
yes
...
...
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