X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fwigyori.git;a=blobdiff_plain;f=package%2Futils%2Fjboot-tools%2Fsrc%2FCMakeLists.txt;fp=package%2Futils%2Fjboot-tools%2Fsrc%2FCMakeLists.txt;h=98fbab38dc82eb80d5a749ceb31e9228a3aaebbe;hp=0000000000000000000000000000000000000000;hb=5323477184cf39f4f20003142ce320ac1d626863;hpb=84c1b786b9830c17034e5de915ce11965666febd diff --git a/package/utils/jboot-tools/src/CMakeLists.txt b/package/utils/jboot-tools/src/CMakeLists.txt new file mode 100644 index 0000000000..98fbab38dc --- /dev/null +++ b/package/utils/jboot-tools/src/CMakeLists.txt @@ -0,0 +1,11 @@ +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)