diff options
| author | Brent Stapleton <brent.stapleton@ettus.com> | 2018-07-19 14:12:48 -0700 | 
|---|---|---|
| committer | Martin Braun <martin.braun@ettus.com> | 2018-07-19 14:41:06 -0700 | 
| commit | 503b087b242907659ad00a13bf93cad1063b3525 (patch) | |
| tree | bfc35792124db2fbc01a44ce5b648a38ccf4f6f4 | |
| parent | 5a488d5ed47720bde07b7c893cc4acba72235970 (diff) | |
| download | uhd-503b087b242907659ad00a13bf93cad1063b3525.tar.gz uhd-503b087b242907659ad00a13bf93cad1063b3525.tar.bz2 uhd-503b087b242907659ad00a13bf93cad1063b3525.zip | |
mpm: Fix eeprom-tools in CMake
Fixes the list of epprom-tools to be built in CMake. The list of tools
is appended, instead of being overwritten by device-specific tools.
Fixes: 300a5e3f6e5e [mpm: initial commit of E320 code]
| -rw-r--r-- | mpm/tools/CMakeLists.txt | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/mpm/tools/CMakeLists.txt b/mpm/tools/CMakeLists.txt index acc9c6c42..4ab83aa41 100644 --- a/mpm/tools/CMakeLists.txt +++ b/mpm/tools/CMakeLists.txt @@ -16,7 +16,7 @@ SET(eeprom_tool_libs)  IF(ENABLE_LIBMPM)      MESSAGE(STATUS "Adding MPM EEPROM tools...")      SET(eeprom_tool_libs eeprom.c) -    SET(eeprom_tool_sources +    LIST(APPEND eeprom_tool_sources          eeprom-blank.c          eeprom-dump.c          eeprom-id.c @@ -27,7 +27,7 @@ ENDIF(ENABLE_LIBMPM)  IF(ENABLE_MYKONOS)      MESSAGE(STATUS "Adding N3XX-specific EEPROM tools...")      SET(eeprom_tool_libs eeprom.c) -    SET(eeprom_tool_sources +    LIST(APPEND eeprom_tool_sources          db-dump.c          db-id.c          db-init.c | 
