mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
12 lines
331 B
CMake
12 lines
331 B
CMake
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_C_COMPILER_ID STREQUAL "Clang")
|
|
add_compile_options(-fno-builtin)
|
|
endif()
|
|
|
|
include(ntdll_crt_apitest.cmake)
|
|
include(msvcrt_crt_apitest.cmake)
|
|
include(static_crt_apitest.cmake)
|
|
|
|
if(NOT ARCH STREQUAL "amd64" AND NOT ARCH STREQUAL "arm")
|
|
include(crtdll_crt_apitest.cmake)
|
|
endif()
|