From 503b087b242907659ad00a13bf93cad1063b3525 Mon Sep 17 00:00:00 2001 From: Brent Stapleton Date: Thu, 19 Jul 2018 14:12:48 -0700 Subject: 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] --- mpm/tools/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mpm') 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 -- cgit v1.2.3