mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
14 lines
346 B
CMake
14 lines
346 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 SHARED
|
|
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)
|