diff options
Diffstat (limited to 'mpm/tools/CMakeLists.txt')
-rw-r--r-- | mpm/tools/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mpm/tools/CMakeLists.txt b/mpm/tools/CMakeLists.txt index 387cee46a..c61e4562c 100644 --- a/mpm/tools/CMakeLists.txt +++ b/mpm/tools/CMakeLists.txt @@ -14,7 +14,7 @@ install(PROGRAMS set(eeprom_tool_sources) set(eeprom_tool_libs) -if(ENABLE_LIBMPM AND NOT ENABLE_E300) +if(ENABLE_LIBMPM AND NOT ENABLE_E300 AND NOT ENABLE_X400) message(STATUS "Adding MPM EEPROM tools...") set(eeprom_tool_libs eeprom.c) list(APPEND eeprom_tool_sources @@ -24,7 +24,7 @@ if(ENABLE_LIBMPM AND NOT ENABLE_E300) eeprom-init.c eeprom-set-flags.c ) -endif(ENABLE_LIBMPM AND NOT ENABLE_E300) +endif(ENABLE_LIBMPM AND NOT ENABLE_E300 AND NOT ENABLE_X400) if(ENABLE_MYKONOS) message(STATUS "Adding N3XX-specific EEPROM tools...") set(eeprom_tool_libs eeprom.c) @@ -43,3 +43,5 @@ foreach(eeprom_tool_source ${eeprom_tool_sources}) 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}) + +add_subdirectory(tlv_eeprom) |