2018-05-23 11:10:10 +01:00
|
|
|
cmake_minimum_required(VERSION 3.2)
|
2018-06-15 13:59:55 +01: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 11:10:10 +01:00
|
|
|
project(libraries C)
|
|
|
|
|
|
|
|
add_subdirectory(libgfd)
|
|
|
|
add_subdirectory(libwhb)
|
2018-06-13 12:12:22 +01:00
|
|
|
add_subdirectory(nn_swkbd)
|
2018-05-27 12:12:49 +01:00
|
|
|
add_subdirectory(wutcrt)
|
2018-06-13 13:36:15 +01:00
|
|
|
add_subdirectory(wutdevoptab_sd)
|
2018-06-14 09:33:16 +01:00
|
|
|
add_subdirectory(wutmalloc)
|
2018-05-25 11:31:38 +01:00
|
|
|
add_subdirectory(wutnewlib)
|
2018-05-25 17:21:59 +01:00
|
|
|
add_subdirectory(wutstdc++)
|