nuttx/libs/libc/stream
chao an 6ee9ec7656 build: add initial cmake build system
1. Update all CMakeLists.txt to adapt to new layout
2. Fix cmake build break
3. Update all new file license
4. Fully compatible with current compilation environment(use configure.sh or cmake as you choose)

------------------

How to test

From within nuttx/. Configure:

cmake -B build -DBOARD_CONFIG=sim/nsh -GNinja
cmake -B build -DBOARD_CONFIG=sim:nsh -GNinja
cmake -B build -DBOARD_CONFIG=sabre-6quad/smp -GNinja
cmake -B build -DBOARD_CONFIG=lm3s6965-ek/qemu-flat -GNinja

(or full path in custom board) :
cmake -B build -DBOARD_CONFIG=$PWD/boards/sim/sim/sim/configs/nsh -GNinja

This uses ninja generator (install with sudo apt install ninja-build). To build:

$ cmake --build build

menuconfig:

$ cmake --build build -t menuconfig

--------------------------

2. cmake/build: reformat the cmake style by cmake-format

https://github.com/cheshirekow/cmake_format

$ pip install cmakelang

$ for i in `find -name CMakeLists.txt`;do cmake-format $i -o $i;done
$ for i in `find -name *\.cmake`;do cmake-format $i -o $i;done

Co-authored-by: Matias N <matias@protobits.dev>
Signed-off-by: chao an <anchao@xiaomi.com>
2023-07-08 13:50:48 +08:00
..
CMakeLists.txt build: add initial cmake build system 2023-07-08 13:50:48 +08:00
Kconfig stream/hexdump: add hexdump stream to dump binary to syslog 2023-05-25 15:22:04 +08:00
lib_blkoutstream.c libc/stream: Rename [lib_stream_](put|get) to [lib_stream_](putc|getc) 2022-12-05 14:27:55 +01:00
lib_bufferedoutstream.c stdio: Implement simple buffered out stream for vdprintf 2023-03-01 13:08:59 +09:00
lib_hexdumpstream.c stream/hexdump: add hexdump stream to dump binary to syslog 2023-05-25 15:22:04 +08:00
lib_libnoflush.c Fix compiler warnings (-Wunused-parameter) in various functions 2022-07-12 11:42:34 +08:00
lib_libsnoflush.c Fix compiler warnings (-Wunused-parameter) in various functions 2022-07-12 11:42:34 +08:00
lib_lowoutstream.c libc/stream: Implement lowoutstream_puts 2023-02-25 18:39:27 +08:00
lib_lzfcompress.c libc/stream: Rename [lib_stream_](put|get) to [lib_stream_](putc|getc) 2022-12-05 14:27:55 +01:00
lib_meminstream.c libc/streams: Implement gets/puts for all streams 2023-03-03 00:49:04 +08:00
lib_memoutstream.c libc/stream: Rename [lib_stream_](put|get) to [lib_stream_](putc|getc) 2022-12-05 14:27:55 +01:00
lib_memsistream.c libc/streams: Implement gets/puts for all streams 2023-03-03 00:49:04 +08:00
lib_memsostream.c libc/streams: Implement gets/puts for all streams 2023-03-03 00:49:04 +08:00
lib_mtdoutstream.c libc/stream: Rename [lib_stream_](put|get) to [lib_stream_](putc|getc) 2022-12-05 14:27:55 +01:00
lib_nullinstream.c libc/streams: Implement gets/puts for all streams 2023-03-03 00:49:04 +08:00
lib_nulloutstream.c libc/streams: Implement gets/puts for all streams 2023-03-03 00:49:04 +08:00
lib_rawinstream.c libc/streams: Implement gets/puts for all streams 2023-03-03 00:49:04 +08:00
lib_rawoutstream.c libc/stream: unify stream behavior 2023-03-04 01:48:22 +08:00
lib_rawsistream.c libc/streams: Implement gets/puts for all streams 2023-03-03 00:49:04 +08:00
lib_rawsostream.c libc/stream: unify stream behavior 2023-03-04 01:48:22 +08:00
lib_stdinstream.c libc/streams: Implement gets/puts for all streams 2023-03-03 00:49:04 +08:00
lib_stdoutstream.c libc/streams: Implement gets/puts for all streams 2023-03-03 00:49:04 +08:00
lib_stdsistream.c libc/stream: unify stream behavior 2023-03-04 01:48:22 +08:00
lib_stdsostream.c libc/streams: Implement gets/puts for all streams 2023-03-03 00:49:04 +08:00
lib_syslograwstream.c lib_syslograwstream: fix bug when iob alloc failed 2023-06-17 19:33:41 +08:00
lib_syslogstream.c stream: Add syslogstream implementation 2023-05-25 15:22:04 +08:00
lib_zeroinstream.c libc/streams: Implement gets/puts for all streams 2023-03-03 00:49:04 +08:00
Make.defs stream/hexdump: add hexdump stream to dump binary to syslog 2023-05-25 15:22:04 +08:00