forked from SEL4PROJ/AOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
35 lines (31 loc) · 915 Bytes
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#
# Copyright 2019, Data61
# Commonwealth Scientific and Industrial Research Organisation (CSIRO)
# ABN 41 687 119 230.
#
# This software may be distributed and modified according to the terms of
# the GNU General Public License version 2. Note that NO WARRANTY is provided.
# See "LICENSE_GPLv2.txt" for details.
#
# @TAG(DATA61_GPL)
#
cmake_minimum_required(VERSION 3.7.2)
# add apps
add_subdirectory(apps/tty_test)
add_subdirectory(apps/sosh)
# add any additional apps here
# add sos itself, this is your OS
# and root task
add_subdirectory(sos)
# add libraries
add_subdirectory(libaos)
add_subdirectory(libclock)
add_subdirectory(libethernet)
add_subdirectory(libsel4cspace)
add_subdirectory(libserial)
add_subdirectory(libsosapi)
# add any additional libs here
# enable our networking libs
set(LibPicotcp ON CACHE BOOL "" FORCE)
set(LibPicotcpBsd ON CACHE BOOL "" FORCE)
set(LibNfs ON CACHE BOOL "" FORCE)