mirror of
https://github.com/reactos/reactos.git
synced 2025-05-29 22:18:13 +00:00
[CMAKE]
- Add ntdll apitest to build. svn path=/trunk/; revision=50312
This commit is contained in:
parent
b58a3e9752
commit
7f7729cb6c
2 changed files with 5 additions and 7 deletions
|
@ -3,7 +3,7 @@ add_library(apitest apitest.c)
|
|||
|
||||
add_subdirectory(dciman32)
|
||||
add_subdirectory(gdi32)
|
||||
#add_subdirectory(ntdll) The asm file needs to be fixed.
|
||||
add_subdirectory(ntdll)
|
||||
add_subdirectory(user32)
|
||||
|
||||
if(ARCH MATCHES i386)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
#add_definitions(-D_DLL -D__USE_CRTIMP)
|
||||
add_definitions(-D_DLL -D__USE_CRTIMP)
|
||||
|
||||
list(APPEND SOURCE
|
||||
RtlInitializeBitMap.c
|
||||
|
@ -7,13 +7,11 @@ list(APPEND SOURCE
|
|||
testlist.c)
|
||||
|
||||
if(ARCH MATCHES i386)
|
||||
list(APPEND SOURCE i386/ZwContinue.asm)
|
||||
list(APPEND SOURCE i386/ZwContinue.S)
|
||||
endif()
|
||||
|
||||
add_executable(ntdll_apitest ${SOURCE})
|
||||
target_link_libraries(ntdll_apitest wine
|
||||
#${PSEH_LIB}
|
||||
)
|
||||
target_link_libraries(ntdll_apitest wine)
|
||||
set_module_type(ntdll_apitest win32cui)
|
||||
add_importlibs(ntdll_apitest ntdll)
|
||||
add_importlibs(ntdll_apitest msvcrt kernel32 ntdll)
|
||||
add_cab_target(ntdll_apitest 7)
|
||||
|
|
Loading…
Reference in a new issue