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!) --- mpm/tools/CMakeLists.txt | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'mpm/tools') diff --git a/mpm/tools/CMakeLists.txt b/mpm/tools/CMakeLists.txt index 4ab83aa41..d0d5d2504 100644 --- a/mpm/tools/CMakeLists.txt +++ b/mpm/tools/CMakeLists.txt @@ -4,41 +4,41 @@ # SPDX-License-Identifier: GPL-3.0 # -INSTALL(PROGRAMS +install(PROGRAMS mpm_shell.py mpm_debug.py DESTINATION ${RUNTIME_DIR} ) -SET(eeprom_tool_sources) -SET(eeprom_tool_libs) +set(eeprom_tool_sources) +set(eeprom_tool_libs) -IF(ENABLE_LIBMPM) - MESSAGE(STATUS "Adding MPM EEPROM tools...") - SET(eeprom_tool_libs eeprom.c) - LIST(APPEND eeprom_tool_sources +if(ENABLE_LIBMPM) + message(STATUS "Adding MPM EEPROM tools...") + set(eeprom_tool_libs eeprom.c) + list(APPEND eeprom_tool_sources eeprom-blank.c eeprom-dump.c eeprom-id.c eeprom-init.c eeprom-set-flags.c ) -ENDIF(ENABLE_LIBMPM) -IF(ENABLE_MYKONOS) - MESSAGE(STATUS "Adding N3XX-specific EEPROM tools...") - SET(eeprom_tool_libs eeprom.c) - LIST(APPEND eeprom_tool_sources +endif(ENABLE_LIBMPM) +if(ENABLE_MYKONOS) + message(STATUS "Adding N3XX-specific EEPROM tools...") + set(eeprom_tool_libs eeprom.c) + list(APPEND eeprom_tool_sources db-dump.c db-id.c db-init.c fan-limits.c ) -ENDIF(ENABLE_MYKONOS) +endif(ENABLE_MYKONOS) #for each source: build an executable and install -FOREACH(eeprom_tool_source ${eeprom_tool_sources}) - GET_FILENAME_COMPONENT(eeprom_tool ${eeprom_tool_source} NAME_WE) - ADD_EXECUTABLE(${eeprom_tool} ${eeprom_tool_source} ${eeprom_tool_libs}) - INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${eeprom_tool} DESTINATION ${RUNTIME_DIR}) -ENDFOREACH(eeprom_tool_source ${eeprom_tool_sources}) +foreach(eeprom_tool_source ${eeprom_tool_sources}) + get_filename_component(eeprom_tool ${eeprom_tool_source} NAME_WE) + add_executable(${eeprom_tool} ${eeprom_tool_source} ${eeprom_tool_libs}) + install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${eeprom_tool} DESTINATION ${RUNTIME_DIR}) +endforeach(eeprom_tool_source ${eeprom_tool_sources}) -- cgit v1.2.3