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.
10 lines
282 B
10 lines
282 B
6 months ago
|
file(GLOB c_compile_tests RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*.c")
|
||
|
file(GLOB cxx_compile_tests RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*.cc")
|
||
|
|
||
|
set(compile_tests ${c_compile_tests} ${cxx_compile_tests})
|
||
|
|
||
|
foreach(test IN LISTS compile_tests)
|
||
|
add_testcase("" ${test})
|
||
|
endforeach()
|
||
|
|