mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
18 lines
439 B
CMake
18 lines
439 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/win32ss)
|
|
|
|
spec2def(win32u.dll win32u_ros.spec ADD_IMPORTLIB)
|
|
add_asm_files(win32u_ros_asm sys-stubs.S)
|
|
|
|
add_library(win32u MODULE
|
|
main.c
|
|
${win32u_ros_asm}
|
|
${CMAKE_CURRENT_BINARY_DIR}/win32u.def)
|
|
|
|
set_module_type(win32u module)
|
|
add_dependencies(win32u psdk)
|
|
add_rostests_file(TARGET win32u)
|
|
|
|
if (STACK_PROTECTOR)
|
|
target_compile_options(win32u PRIVATE -fno-stack-protector)
|
|
endif()
|