mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
15 lines
285 B
CMake
15 lines
285 B
CMake
|
|
list(APPEND LIBCNTPT_MISC_SOURCE
|
|
misc/fltused.c
|
|
)
|
|
|
|
if(ARCH STREQUAL "i386")
|
|
list(APPEND LIBCNTPR_ASM_SOURCE
|
|
misc/i386/readcr4.S
|
|
)
|
|
endif()
|
|
|
|
add_library(getopt misc/getopt.c)
|
|
target_compile_definitions(getopt PRIVATE _DLL __USE_CRTIMP)
|
|
add_dependencies(getopt psdk)
|