mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
2d462cd8b1
Don't compile w32kdll and w32knapi test on MSVC svn path=/trunk/; revision=50553
17 lines
264 B
CMake
17 lines
264 B
CMake
|
|
add_library(apitest apitest.c)
|
|
|
|
add_subdirectory(dciman32)
|
|
add_subdirectory(gdi32)
|
|
add_subdirectory(ntdll)
|
|
add_subdirectory(user32)
|
|
|
|
if(NOT MSVC)
|
|
if(ARCH MATCHES i386)
|
|
add_subdirectory(w32kdll)
|
|
add_subdirectory(w32knapi)
|
|
endif()
|
|
endif()
|
|
|
|
add_subdirectory(ws2_32)
|