Commit 803ba536 authored by Dominik Charousset's avatar Dominik Charousset

Remove unused build option

The benchmarks moved to a separate repository a long time ago. It's time
to remove the legacy build option.
parent c9e8ad17
...@@ -560,10 +560,6 @@ add_optional_caf_binaries(examples) ...@@ -560,10 +560,6 @@ add_optional_caf_binaries(examples)
# build tools if not being told otherwise # build tools if not being told otherwise
add_optional_caf_binaries(tools) add_optional_caf_binaries(tools)
# build benchmarks if not being told otherwise
add_optional_caf_binaries(benchmarks)
################################################################################ ################################################################################
# unit tests setup # # unit tests setup #
################################################################################ ################################################################################
...@@ -686,7 +682,6 @@ invertYesNo(CAF_NO_TOOLS CAF_BUILD_TOOLS) ...@@ -686,7 +682,6 @@ invertYesNo(CAF_NO_TOOLS CAF_BUILD_TOOLS)
invertYesNo(CAF_NO_UNIT_TESTS CAF_BUILD_UNIT_TESTS) invertYesNo(CAF_NO_UNIT_TESTS CAF_BUILD_UNIT_TESTS)
invertYesNo(CAF_NO_EXCEPTIONS CAF_BUILD_WITH_EXCEPTIONS) invertYesNo(CAF_NO_EXCEPTIONS CAF_BUILD_WITH_EXCEPTIONS)
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_OPENCL CAF_BUILD_OPENCL) invertYesNo(CAF_NO_OPENCL CAF_BUILD_OPENCL)
invertYesNo(CAF_NO_OPENSSL CAF_BUILD_OPENSSL) invertYesNo(CAF_NO_OPENSSL CAF_BUILD_OPENSSL)
invertYesNo(CAF_NO_PYTHON CAF_BUILD_PYTHON) invertYesNo(CAF_NO_PYTHON CAF_BUILD_PYTHON)
...@@ -715,7 +710,6 @@ if(NOT CAF_NO_SUMMARY) ...@@ -715,7 +710,6 @@ if(NOT CAF_NO_SUMMARY)
"\nBuild tools: ${CAF_BUILD_TOOLS}" "\nBuild tools: ${CAF_BUILD_TOOLS}"
"\nBuild examples: ${CAF_BUILD_EXAMPLES}" "\nBuild examples: ${CAF_BUILD_EXAMPLES}"
"\nBuild unit tests: ${CAF_BUILD_UNIT_TESTS}" "\nBuild unit tests: ${CAF_BUILD_UNIT_TESTS}"
"\nBuild benchmarks: ${CAF_BUILD_BENCHMARKS}"
"\nBuild OpenCL: ${CAF_BUILD_OPENCL}" "\nBuild OpenCL: ${CAF_BUILD_OPENCL}"
"\nBuild OpenSSL: ${CAF_BUILD_OPENSSL}" "\nBuild OpenSSL: ${CAF_BUILD_OPENSSL}"
"\nBuild Python: ${CAF_BUILD_PYTHON}" "\nBuild Python: ${CAF_BUILD_PYTHON}"
......
...@@ -60,7 +60,6 @@ Usage: $0 [OPTION]... [VAR=VALUE]... ...@@ -60,7 +60,6 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
--no-unit-tests build without unit tests --no-unit-tests build without unit tests
--no-opencl build without OpenCL module --no-opencl build without OpenCL module
--no-openssl build without OpenSSL module --no-openssl build without OpenSSL module
--no-benchmarks build without benchmarks
--no-tools build without CAF tools such as caf-run --no-tools build without CAF tools such as caf-run
--no-io build without I/O module --no-io build without I/O module
--no-python build without python binding --no-python build without python binding
...@@ -352,9 +351,6 @@ while [ $# -ne 0 ]; do ...@@ -352,9 +351,6 @@ while [ $# -ne 0 ]; do
--with-python-config=*) --with-python-config=*)
append_cache_entry CAF_PYTHON_CONFIG_BIN FILEPATH "$optarg" append_cache_entry CAF_PYTHON_CONFIG_BIN FILEPATH "$optarg"
;; ;;
--no-benchmarks)
append_cache_entry CAF_NO_BENCHMARKS BOOL yes
;;
--no-tools) --no-tools)
append_cache_entry CAF_NO_TOOLS BOOL yes append_cache_entry CAF_NO_TOOLS BOOL yes
;; ;;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment