mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 13:59:25 +00:00
85377ee3db
- Implement reporting to file. CORE-11835, CORE-15517, ROSTESTS-386
31 lines
594 B
CMake
31 lines
594 B
CMake
|
|
list(APPEND LIBCNTPT_MISC_SOURCE
|
|
misc/fltused.c
|
|
)
|
|
|
|
if(ARCH STREQUAL "i386")
|
|
list(APPEND LIBCNTPR_ASM_SOURCE
|
|
misc/i386/readcr4.S
|
|
)
|
|
endif()
|
|
|
|
list(APPEND CRT_MISC_SOURCE
|
|
${LIBCNTPT_MISC_SOURCE}
|
|
misc/__crt_MessageBoxA.c
|
|
misc/amsg.c
|
|
misc/assert.c
|
|
misc/crt_init.c
|
|
misc/dbgrpt.cpp
|
|
misc/environ.c
|
|
misc/getargs.c
|
|
misc/i10output.c
|
|
misc/initterm.c
|
|
misc/lock.c
|
|
misc/purecall.c
|
|
misc/stubs.c
|
|
misc/tls.c
|
|
)
|
|
|
|
add_library(getopt misc/getopt.c)
|
|
target_compile_definitions(getopt PRIVATE _DLL __USE_CRTIMP)
|
|
add_dependencies(getopt psdk)
|