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
8b2306dd
Commit
8b2306dd
authored
Jul 17, 2014
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove old cppa variables from build script
parent
52f0a9b1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
15 deletions
+13
-15
CMakeLists.txt
CMakeLists.txt
+2
-4
configure
configure
+11
-11
No files found.
CMakeLists.txt
View file @
8b2306dd
...
@@ -99,7 +99,7 @@ endif (HAVE_VALGRIND_H)
...
@@ -99,7 +99,7 @@ endif (HAVE_VALGRIND_H)
# set build type (evaluate CAF_ENABLE_RUNTIME_CHECKS flag)
# set build type (evaluate CAF_ENABLE_RUNTIME_CHECKS flag)
if
(
CAF_ENABLE_RUNTIME_CHECKS
)
if
(
CAF_ENABLE_RUNTIME_CHECKS
)
add_definitions
(
-DCAF_ENABLE_RUNTIME_CHECKS
)
add_definitions
(
-DCAF_ENABLE_RUNTIME_CHECKS
)
message
(
STATUS
"Enable
libcaf's debug mode
"
)
message
(
STATUS
"Enable
runtime checks
"
)
endif
(
CAF_ENABLE_RUNTIME_CHECKS
)
endif
(
CAF_ENABLE_RUNTIME_CHECKS
)
if
(
ENABLE_ADDRESS_SANITIZER
)
if
(
ENABLE_ADDRESS_SANITIZER
)
...
@@ -368,7 +368,7 @@ message(STATUS
...
@@ -368,7 +368,7 @@ message(STATUS
"
\n
Libcaf version:
${
LIBRARY_VERSION
}
"
"
\n
Libcaf version:
${
LIBRARY_VERSION
}
"
"
\n
"
"
\n
"
"
\n
Build type:
${
CMAKE_BUILD_TYPE
}
"
"
\n
Build type:
${
CMAKE_BUILD_TYPE
}
"
"
\n
Debug mode:
${
DEBUG_MODE_STR
}
"
"
\n
Runtime checks:
${
DEBUG_MODE_STR
}
"
"
\n
Log level:
${
LOG_LEVEL_STR
}
"
"
\n
Log level:
${
LOG_LEVEL_STR
}
"
"
\n
Build examples:
${
BUILD_EXAMPLES
}
"
"
\n
Build examples:
${
BUILD_EXAMPLES
}
"
"
\n
Build unit tests:
${
BUILD_UNIT_TESTS
}
"
"
\n
Build unit tests:
${
BUILD_UNIT_TESTS
}
"
...
@@ -387,6 +387,4 @@ message(STATUS
...
@@ -387,6 +387,4 @@ message(STATUS
"
\n
Library path:
${
LIBRARY_OUTPUT_PATH
}
"
"
\n
Library path:
${
LIBRARY_OUTPUT_PATH
}
"
"
\n
Install prefix:
${
CMAKE_INSTALL_PREFIX
}
"
"
\n
Install prefix:
${
CMAKE_INSTALL_PREFIX
}
"
"
\n
"
"
\n
"
"
\n
Boost:
${
Boost_INCLUDE_DIR
}
"
"
\n
"
"
\n
===========================================================
\n
"
)
"
\n
===========================================================
\n
"
)
configure
View file @
8b2306dd
...
@@ -201,19 +201,19 @@ while [ $# -ne 0 ]; do
...
@@ -201,19 +201,19 @@ while [ $# -ne 0 ]; do
level
=
`
echo
"
$optarg
"
|
tr
'[:lower:]'
'[:upper:]'
`
level
=
`
echo
"
$optarg
"
|
tr
'[:lower:]'
'[:upper:]'
`
case
$level
in
case
$level
in
ERROR
)
ERROR
)
append_cache_entry C
PPA
_LOG_LEVEL STRING 0
append_cache_entry C
AF
_LOG_LEVEL STRING 0
;;
;;
WARNING
)
WARNING
)
append_cache_entry C
PPA
_LOG_LEVEL STRING 1
append_cache_entry C
AF
_LOG_LEVEL STRING 1
;;
;;
INFO
)
INFO
)
append_cache_entry C
PPA
_LOG_LEVEL STRING 2
append_cache_entry C
AF
_LOG_LEVEL STRING 2
;;
;;
DEBUG
)
DEBUG
)
append_cache_entry C
PPA
_LOG_LEVEL STRING 3
append_cache_entry C
AF
_LOG_LEVEL STRING 3
;;
;;
TRACE
)
TRACE
)
append_cache_entry C
PPA
_LOG_LEVEL STRING 4
append_cache_entry C
AF
_LOG_LEVEL STRING 4
;;
;;
*
)
*
)
echo
"Invalid log level '
$level
'. Try '
$0
--help' to see valid values."
echo
"Invalid log level '
$level
'. Try '
$0
--help' to see valid values."
...
@@ -243,22 +243,22 @@ while [ $# -ne 0 ]; do
...
@@ -243,22 +243,22 @@ while [ $# -ne 0 ]; do
dualbuild
=
1
dualbuild
=
1
;;
;;
--no-examples
)
--no-examples
)
append_cache_entry C
PPA
_NO_EXAMPLES STRING
yes
append_cache_entry C
AF
_NO_EXAMPLES STRING
yes
;;
;;
--no-qt-examples
)
--no-qt-examples
)
append_cache_entry C
PPA
_NO_QT_EXAMPLES STRING
yes
append_cache_entry C
AF
_NO_QT_EXAMPLES STRING
yes
;;
;;
--no-protobuf-examples
)
--no-protobuf-examples
)
append_cache_entry C
PPA
_NO_PROTOBUF_EXAMPLES STRING
yes
append_cache_entry C
AF
_NO_PROTOBUF_EXAMPLES STRING
yes
;;
;;
--no-unit-tests
)
--no-unit-tests
)
append_cache_entry C
PPA
_NO_UNIT_TESTS STRING
yes
append_cache_entry C
AF
_NO_UNIT_TESTS STRING
yes
;;
;;
--build-static
)
--build-static
)
append_cache_entry C
PPA
_BUILD_STATIC STRING
yes
append_cache_entry C
AF
_BUILD_STATIC STRING
yes
;;
;;
--build-static-only
)
--build-static-only
)
append_cache_entry C
PPA
_BUILD_STATIC_ONLY STRING
yes
append_cache_entry C
AF
_BUILD_STATIC_ONLY STRING
yes
;;
;;
*
)
*
)
echo
"Invalid option '
$1
'. Try
$0
--help to see available options."
echo
"Invalid option '
$1
'. Try
$0
--help to see available options."
...
...
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