mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-07 14:28:50 +00:00
5323477184
Adds tool to extract MAC and pre-calibration data required for JBOOT based D-Link routers. Signed-off-by: Pawel Dembicki <paweldembicki@gmail.com>
12 lines
325 B
CMake
12 lines
325 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
|
|
PROJECT(jboot-tools C)
|
|
ADD_DEFINITIONS(-Wall -Werror --std=gnu99 -Wmissing-declarations)
|
|
|
|
SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "")
|
|
|
|
ADD_EXECUTABLE(jboot_config_read jboot_config_read.c)
|
|
TARGET_LINK_LIBRARIES(jboot_config_read)
|
|
|
|
INSTALL(TARGETS jboot_config_read RUNTIME DESTINATION bin)
|