2018-05-23 12:10:10 +02:00
|
|
|
cmake_minimum_required(VERSION 3.2)
|
2018-06-15 14:59:55 +02:00
|
|
|
|
|
|
|
# Load up the in-tree toolchain
|
|
|
|
set(WUT_ROOT "{CMAKE_CURRENT_SOURCE_DIR}/.." CACHE STRING "")
|
|
|
|
set(ENV{WUT_ROOT} ${WUT_ROOT})
|
|
|
|
set(CMAKE_TOOLCHAIN_FILE $ENV{WUT_ROOT}/share/wut.toolchain.cmake)
|
|
|
|
|
2018-05-23 12:10:10 +02:00
|
|
|
project(libraries C)
|
|
|
|
|
|
|
|
add_subdirectory(libgfd)
|
|
|
|
add_subdirectory(libwhb)
|
2018-06-13 13:12:22 +02:00
|
|
|
add_subdirectory(nn_swkbd)
|
2018-05-27 13:12:49 +02:00
|
|
|
add_subdirectory(wutcrt)
|
2018-06-13 14:36:15 +02:00
|
|
|
add_subdirectory(wutdevoptab_sd)
|
2018-06-14 10:33:16 +02:00
|
|
|
add_subdirectory(wutmalloc)
|
2018-05-25 12:31:38 +02:00
|
|
|
add_subdirectory(wutnewlib)
|
2018-05-25 18:21:59 +02:00
|
|
|
add_subdirectory(wutstdc++)
|