wut/samples/CMakeLists.txt

14 lines
403 B
CMake
Raw Normal View History

2018-05-25 18:23:11 +02:00
cmake_minimum_required(VERSION 3.2)
project(samples)
include("${WUT_ROOT}/share/wut.cmake" REQUIRED)
2018-05-31 11:30:24 +02:00
add_subdirectory(custom_default_heap)
2018-06-13 13:12:51 +02:00
add_subdirectory(gx2_triangle)
2018-05-25 18:23:11 +02:00
add_subdirectory(helloworld)
add_subdirectory(helloworld_std_thread)
2018-05-31 11:30:24 +02:00
add_subdirectory(my_first_rpl)
2018-06-13 13:12:51 +02:00
add_subdirectory(swkbd)
2018-05-31 11:30:24 +02:00
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/content/"
DESTINATION "${CMAKE_INSTALL_PREFIX}/content")