From a69ab0c23a0c38e3fed3e412df36538d8959d23c Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Tue, 13 Nov 2018 21:53:22 -0800 Subject: cmake: Update coding style to use lowercase commands Also updates our coding style file. Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code (with GNU compliant sed): cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done > convert.sed \ && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' \ '*CMakeLists.txt' | xargs -0 gsed -i -f convert.sed && rm convert.sed (Make sure the backslashes don't get mangled!) --- host/tests/devtest/CMakeLists.txt | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'host/tests/devtest') diff --git a/host/tests/devtest/CMakeLists.txt b/host/tests/devtest/CMakeLists.txt index 0bce8050d..69acc638f 100644 --- a/host/tests/devtest/CMakeLists.txt +++ b/host/tests/devtest/CMakeLists.txt @@ -6,10 +6,10 @@ # # Formatting -MESSAGE(STATUS "") +message(STATUS "") # All devtest files get installed: -FILE(GLOB py_devtest_files "*.py") +file(GLOB py_devtest_files "*.py") UHD_INSTALL(PROGRAMS ${py_devtest_files} DESTINATION ${PKG_LIB_DIR}/tests/devtest @@ -20,9 +20,9 @@ UHD_INSTALL(PROGRAMS # - pattern: This will be used to identify which devtest_*.py is to be executed. # - filter: Will be used in args strings as "type=". # - devtype: A descriptive string. Is only used for CMake output. -MACRO(ADD_DEVTEST pattern filter devtype) - MESSAGE(STATUS "Adding ${devtype} device test target") - ADD_CUSTOM_TARGET("test_${pattern}" +macro(ADD_DEVTEST pattern filter devtype) + message(STATUS "Adding ${devtype} device test target") + add_custom_target("test_${pattern}" ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/run_testsuite.py "--src-dir" "${CMAKE_CURRENT_SOURCE_DIR}" "--devtest-pattern" "${pattern}" @@ -32,20 +32,20 @@ MACRO(ADD_DEVTEST pattern filter devtype) COMMENT "Running device test on all connected ${devtype} devices:" WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" ) -ENDMACRO(ADD_DEVTEST) +endmacro(ADD_DEVTEST) -IF(ENABLE_B200) +if(ENABLE_B200) ADD_DEVTEST("b2xx" "b200" "B2XX") -ENDIF(ENABLE_B200) -IF(ENABLE_X300) +endif(ENABLE_B200) +if(ENABLE_X300) ADD_DEVTEST("x3x0" "x300" "X3x0") -ENDIF(ENABLE_X300) -IF(ENABLE_E300) +endif(ENABLE_X300) +if(ENABLE_E300) ADD_DEVTEST("e3xx" "e3x0" "E3XX") -ENDIF(ENABLE_E300) -IF(ENABLE_MPMD) +endif(ENABLE_E300) +if(ENABLE_MPMD) ADD_DEVTEST("n3x0" "n3xx" "N3XX") ADD_DEVTEST("e320" "e3xx" "E32x") -ENDIF(ENABLE_MPMD) +endif(ENABLE_MPMD) # Formatting -MESSAGE(STATUS "") +message(STATUS "") -- cgit v1.2.3