1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00
libhermit/usr/tests/CMakeLists.txt

47 lines
1.4 KiB
Text
Raw Permalink Normal View History

cmake_minimum_required(VERSION 3.7)
include(../../cmake/HermitCore-Application.cmake)
project(hermit_tests C CXX Fortran Go)
add_executable(hello hello.c)
target_compile_options(hello PRIVATE -g)
add_executable(jacobi jacobi.c)
add_executable(argv_envp argv_envp.c)
add_executable(hello++ hello++.cpp)
add_executable(hellof hellof.f90)
if("${TARGET_ARCH}" STREQUAL "x86_64-hermit")
add_executable(pi pi.go)
endif()
add_executable(allocator allocator.c)
add_executable(endless endless.c)
target_compile_options(endless PRIVATE -fopenmp)
target_link_libraries(endless -fopenmp)
add_executable(test-malloc test-malloc.c)
add_executable(test-malloc-mt test-malloc-mt.c)
target_compile_options(test-malloc-mt PRIVATE -pthread)
target_link_libraries(test-malloc-mt pthread)
if("${TARGET_ARCH}" STREQUAL "x86_64-hermit")
add_executable(server server.go)
target_link_libraries(server netgo)
add_executable(RCCE_minimum RCCE_minimum.c)
target_link_libraries(RCCE_minimum ircce)
endif()
add_executable(thr_hello thr_hello.c)
target_compile_options(thr_hello PRIVATE -pthread)
target_link_libraries(thr_hello pthread)
add_executable(nweb23 nweb23.c)
target_compile_options(nweb23 PRIVATE -pthread)
target_link_libraries(nweb23 pthread)
add_executable(signals signals.c)
target_compile_options(signals PRIVATE -pthread)
target_link_libraries(signals pthread)
# deployment
install_local_targets(extra/tests)