incubator-nuttx/net/socket
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 net/socket: fix kconfig warning 2023-05-30 16:06:17 +08:00
Make.defs net: Implement shutdown() interface and tcp shutdown 2023-01-31 11:15:01 +08:00
accept.c net/local: Return the unblock handle correctly in local_accept 2023-03-09 09:17:19 +01:00
bind.c net: Make si_bind callback optional 2023-03-06 20:58:27 +02:00
connect.c net: Make si_connect callback optional 2023-03-06 20:58:27 +02:00
getpeername.c net: Remove the empty si_getpeername implementation 2023-03-06 20:58:27 +02:00
getsockname.c net: Make si_getsockname callback optional 2023-03-06 20:58:27 +02:00
getsockopt.c socket: divide errno & s_error 2023-02-23 16:40:19 +01:00
listen.c net: Make si_listen callback optional 2023-03-06 20:58:27 +02:00
net_close.c
net_dup2.c
net_fstat.c net: remove conn-related casts 2023-05-10 19:32:09 -03:00
net_poll.c net: Make si_poll callback optional 2023-03-06 20:58:27 +02:00
net_sendfile.c socket: divide errno & s_error 2023-02-23 16:40:19 +01:00
net_sockif.c net: Remove usrsock specific process from common code as much as possible 2022-11-28 16:32:41 +09:00
net_timeo.c
recv.c net/semantic/parser: fix compile warning found by sparse 2023-05-30 23:00:00 +08:00
recvfrom.c socket/recvfrom: Fix buffer copy direction when using BUILD_KERNEL. 2023-06-22 11:56:01 +08:00
recvmsg.c recvmsg: control msg support multi-attribute return 2023-05-04 12:04:11 +02:00
send.c net/socket: Combine send() with sendto() 2023-05-27 03:24:06 +08:00
sendmsg.c socket: divide errno & s_error 2023-02-23 16:40:19 +01:00
sendto.c socket/send/recv: Copy user parameters to kernel memory (BUILD_KERNEL) 2023-05-27 03:24:06 +08:00
setsockopt.c net: add parameter check in psock_setsockopt 2022-11-29 00:20:09 +08:00
shutdown.c socket: divide errno & s_error 2023-02-23 16:40:19 +01:00
socket.c net: Remove protocol argument from si_setup callback 2023-02-13 22:41:19 +08:00
socket.h socket: divide errno & s_error 2023-02-23 16:40:19 +01:00
socketpair.c socketpair: Add SOCK_NONBLOCK support into type field 2022-10-21 16:57:20 +08:00