From 1b49089d85006964b450bc3c3d70e6197c518efc Mon Sep 17 00:00:00 2001 From: Brent Stapleton Date: Thu, 22 Feb 2018 11:06:23 -0800 Subject: mpm: break up device compilation Breaking up dboard compilation based on the target MPM_DEVICE. --- mpm/tools/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mpm/tools') diff --git a/mpm/tools/CMakeLists.txt b/mpm/tools/CMakeLists.txt index 727635a02..1aa079f28 100644 --- a/mpm/tools/CMakeLists.txt +++ b/mpm/tools/CMakeLists.txt @@ -13,8 +13,8 @@ INSTALL(PROGRAMS SET(eeprom_tool_sources) SET(eeprom_tool_libs) -IF("${MPM_DEVICE}" STREQUAL "n310") - MESSAGE(STATUS "Adding N310-specific EEPROM tools...") +IF("${MPM_DEVICE}" STREQUAL "n3xx") + MESSAGE(STATUS "Adding N3XX-specific EEPROM tools...") SET(eeprom_tool_libs eeprom.c) SET(eeprom_tool_sources db-dump.c @@ -27,7 +27,7 @@ IF("${MPM_DEVICE}" STREQUAL "n310") eeprom-set-flags.c fan-limits.c ) -ENDIF("${MPM_DEVICE}" STREQUAL "n310") +ENDIF("${MPM_DEVICE}" STREQUAL "n3xx") #for each source: build an executable and install FOREACH(eeprom_tool_source ${eeprom_tool_sources}) -- cgit v1.2.3