aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/tools
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2018-11-13 21:53:22 -0800
committerBrent Stapleton <bstapleton@g.hmc.edu>2018-11-14 14:10:09 -0800
commita69ab0c23a0c38e3fed3e412df36538d8959d23c (patch)
treee6669a138dad84f79c46588f43a38c69dda90246 /mpm/tools
parent4247f025020d7dd1f696dfbd3cce248957d6ace7 (diff)
downloaduhd-a69ab0c23a0c38e3fed3e412df36538d8959d23c.tar.gz
uhd-a69ab0c23a0c38e3fed3e412df36538d8959d23c.tar.bz2
uhd-a69ab0c23a0c38e3fed3e412df36538d8959d23c.zip
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!)
Diffstat (limited to 'mpm/tools')
-rw-r--r--mpm/tools/CMakeLists.txt36
1 files changed, 18 insertions, 18 deletions
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})