mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[WIN32U] Rename win32kdll to win32u, which is the "official" name on Windows 10
svn path=/trunk/; revision=76026
This commit is contained in:
parent
a0b2ac0ff9
commit
bed6d00963
34 changed files with 66 additions and 66 deletions
|
@ -37,7 +37,7 @@ add_subdirectory(user32_dynamic)
|
|||
add_subdirectory(userenv)
|
||||
add_subdirectory(uxtheme)
|
||||
if(NOT ARCH STREQUAL "amd64" AND NOT CMAKE_BUILD_TYPE STREQUAL "Release")
|
||||
add_subdirectory(win32kdll)
|
||||
add_subdirectory(win32u)
|
||||
add_subdirectory(win32nt)
|
||||
endif()
|
||||
add_subdirectory(winhttp)
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
|
||||
add_subdirectory(win32kdll_ros)
|
||||
add_subdirectory(win32kdll_xpsp2)
|
||||
#add_subdirectory(win32kdll_2ksp4)
|
||||
add_subdirectory(win32kdll_2k3sp2)
|
||||
#add_subdirectory(win32kdll_vista)
|
|
@ -1,11 +0,0 @@
|
|||
|
||||
spec2def(win32kdll_2k3sp2.dll win32kdll_2k3sp2.spec ADD_IMPORTLIB)
|
||||
add_asm_files(win32kdll_2k3sp2_asm sys-stubs.S)
|
||||
|
||||
add_library(win32kdll_2k3sp2 SHARED
|
||||
main.c
|
||||
${win32kdll_2k3sp2_asm}
|
||||
${CMAKE_CURRENT_BINARY_DIR}/win32kdll_2k3sp2.def)
|
||||
|
||||
set_module_type(win32kdll_2k3sp2 module)
|
||||
add_dependencies(win32kdll_2k3sp2 psdk)
|
|
@ -1,11 +0,0 @@
|
|||
|
||||
spec2def(win32kdll_2ksp4.dll win32kdll_2ksp4.spec)
|
||||
add_asm_files(win32kdll_2ksp4_asm win32kdll_2ksp4.S)
|
||||
|
||||
add_library(win32kdll_2ksp4 SHARED
|
||||
main.c
|
||||
${win32kdll_2ksp4_asm}
|
||||
${CMAKE_CURRENT_BINARY_DIR}/win32kdll_2ksp4.def)
|
||||
|
||||
set_module_type(win32kdll_2ksp4 module)
|
||||
add_dependencies(win32kdll_2ksp4 psdk)
|
|
@ -1,14 +0,0 @@
|
|||
|
||||
include_directories(${REACTOS_SOURCE_DIR}/win32ss)
|
||||
|
||||
spec2def(win32kdll.dll win32kdll_ros.spec ADD_IMPORTLIB)
|
||||
add_asm_files(win32kdll_ros_asm sys-stubs.S)
|
||||
|
||||
add_library(win32kdll SHARED
|
||||
main.c
|
||||
${win32kdll_ros_asm}
|
||||
${CMAKE_CURRENT_BINARY_DIR}/win32kdll.def)
|
||||
|
||||
set_module_type(win32kdll module)
|
||||
add_dependencies(win32kdll psdk)
|
||||
add_rostests_file(TARGET win32kdll)
|
|
@ -1,11 +0,0 @@
|
|||
|
||||
spec2def(win32kdll_vista.spec win32kdll_vista.spec ADD_IMPORTLIB)
|
||||
add_asm_files(win32kdll_vista_asm win32kdll_vista.S)
|
||||
|
||||
add_library(win32kdll_vista SHARED
|
||||
main.c
|
||||
${win32kdll_vista_asm}
|
||||
${CMAKE_CURRENT_BINARY_DIR}/win32kdll_vista.def)
|
||||
|
||||
set_module_type(win32kdll_vista module)
|
||||
add_dependencies(win32kdll_vista psdk)
|
|
@ -1,11 +0,0 @@
|
|||
|
||||
spec2def(win32kdll_xpsp2.dll win32kdll_xpsp2.spec ADD_IMPORTLIB)
|
||||
add_asm_files(win32kdll_xpsp2_asm sys-stubs.S)
|
||||
|
||||
add_library(win32kdll_xpsp2 SHARED
|
||||
main.c
|
||||
${win32kdll_xpsp2_asm}
|
||||
${CMAKE_CURRENT_BINARY_DIR}/win32kdll_xpsp2.def)
|
||||
|
||||
set_module_type(win32kdll_xpsp2 module)
|
||||
add_dependencies(win32kdll_xpsp2 psdk)
|
|
@ -68,7 +68,7 @@ add_executable(win32knt_apitest ${SOURCE})
|
|||
target_link_libraries(win32knt_apitest ${PSEH_LIB} gditools)
|
||||
set_module_type(win32knt_apitest win32cui)
|
||||
add_importlibs(win32knt_apitest
|
||||
win32kdll # win32kdll_2ksp4 win32kdll_xpsp2 win32kdll_2k3sp2 win32kdll_vista
|
||||
win32u # win32u_2ksp4 win32u_xpsp2 win32u_2k3sp2 win32u_vista
|
||||
gdi32
|
||||
user32
|
||||
shell32
|
||||
|
|
6
rostests/apitests/win32u/CMakeLists.txt
Normal file
6
rostests/apitests/win32u/CMakeLists.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
add_subdirectory(win32u_ros)
|
||||
add_subdirectory(win32u_xpsp2)
|
||||
#add_subdirectory(win32u_2ksp4)
|
||||
add_subdirectory(win32u_2k3sp2)
|
||||
#add_subdirectory(win32u_vista)
|
11
rostests/apitests/win32u/win32u_2k3sp2/CMakeLists.txt
Normal file
11
rostests/apitests/win32u/win32u_2k3sp2/CMakeLists.txt
Normal file
|
@ -0,0 +1,11 @@
|
|||
|
||||
spec2def(win32u_2k3sp2.dll win32u_2k3sp2.spec ADD_IMPORTLIB)
|
||||
add_asm_files(win32u_2k3sp2_asm sys-stubs.S)
|
||||
|
||||
add_library(win32u_2k3sp2 SHARED
|
||||
main.c
|
||||
${win32u_2k3sp2_asm}
|
||||
${CMAKE_CURRENT_BINARY_DIR}/win32u_2k3sp2.def)
|
||||
|
||||
set_module_type(win32u_2k3sp2 module)
|
||||
add_dependencies(win32u_2k3sp2 psdk)
|
11
rostests/apitests/win32u/win32u_2ksp4/CMakeLists.txt
Normal file
11
rostests/apitests/win32u/win32u_2ksp4/CMakeLists.txt
Normal file
|
@ -0,0 +1,11 @@
|
|||
|
||||
spec2def(win32u_2ksp4.dll win32u_2ksp4.spec)
|
||||
add_asm_files(win32u_2ksp4_asm win32u_2ksp4.S)
|
||||
|
||||
add_library(win32u_2ksp4 SHARED
|
||||
main.c
|
||||
${win32ku_2ksp4_asm}
|
||||
${CMAKE_CURRENT_BINARY_DIR}/win32u_2ksp4.def)
|
||||
|
||||
set_module_type(win32u_2ksp4 module)
|
||||
add_dependencies(win32u_2ksp4 psdk)
|
14
rostests/apitests/win32u/win32u_ros/CMakeLists.txt
Normal file
14
rostests/apitests/win32u/win32u_ros/CMakeLists.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
|
||||
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)
|
11
rostests/apitests/win32u/win32u_vista/CMakeLists.txt
Normal file
11
rostests/apitests/win32u/win32u_vista/CMakeLists.txt
Normal file
|
@ -0,0 +1,11 @@
|
|||
|
||||
spec2def(win32u_vista.spec win32u_vista.spec ADD_IMPORTLIB)
|
||||
add_asm_files(win32u_vista_asm win32u_vista.S)
|
||||
|
||||
add_library(win32u_vista SHARED
|
||||
main.c
|
||||
${win32u_vista_asm}
|
||||
${CMAKE_CURRENT_BINARY_DIR}/win32u_vista.def)
|
||||
|
||||
set_module_type(win32u_vista module)
|
||||
add_dependencies(win32u_vista psdk)
|
11
rostests/apitests/win32u/win32u_xpsp2/CMakeLists.txt
Normal file
11
rostests/apitests/win32u/win32u_xpsp2/CMakeLists.txt
Normal file
|
@ -0,0 +1,11 @@
|
|||
|
||||
spec2def(win32u_xpsp2.dll win32u_xpsp2.spec ADD_IMPORTLIB)
|
||||
add_asm_files(win32u_xpsp2_asm sys-stubs.S)
|
||||
|
||||
add_library(win32u_xpsp2 SHARED
|
||||
main.c
|
||||
${win32u_xpsp2_asm}
|
||||
${CMAKE_CURRENT_BINARY_DIR}/win32u_xpsp2.def)
|
||||
|
||||
set_module_type(win32u_xpsp2 module)
|
||||
add_dependencies(win32u_xpsp2 psdk)
|
Loading…
Reference in a new issue