mirror of https://github.com/WebAssembly/wasi-sdk
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
298 B
9 lines
298 B
6 months ago
|
file(GLOB c_general_tests RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*.c")
|
||
|
file(GLOB cxx_general_tests RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*.cc")
|
||
|
|
||
|
set(general_tests ${c_general_tests} ${cxx_general_tests})
|
||
|
|
||
|
foreach(test IN LISTS general_tests)
|
||
|
add_testcase(${WASI_SDK_RUNWASI} ${test})
|
||
|
endforeach()
|