commit 31c7853bc8f3e99521f9655045082d31deee3663 Author: Stefano Babic Date: Fri Dec 28 15:09:34 2018 +0100 Initialize repo Signed-off-by: Stefano Babic diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..3c6ad2d --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required (VERSION 2.6) +project (libubootenv) + +# The version number. +set (libubootenv_VERSION_MAJOR 1) +set (libubootenv_VERSION_MAJOR_VERSION_MINOR 0) + +include_directories ("${PROJECT_SOURCE_DIR}/src") +add_subdirectory (src) + diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..388aeb6 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1 @@ +add_library(libubootenv uboot_env.c) diff --git a/src/uboot_env.c b/src/uboot_env.c new file mode 100644 index 0000000..53c5fdf --- /dev/null +++ b/src/uboot_env.c @@ -0,0 +1 @@ +#include