mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[DNSAPI] Simplify the directory structure
This commit is contained in:
parent
3d046e0ed2
commit
872fc17d0d
10 changed files with 10 additions and 10 deletions
|
@ -11,15 +11,15 @@ add_definitions(-DADNS_JGAA_WIN32 -D_CRT_NO_POSIX_ERROR_CODES)
|
||||||
spec2def(dnsapi.dll dnsapi.spec ADD_IMPORTLIB)
|
spec2def(dnsapi.dll dnsapi.spec ADD_IMPORTLIB)
|
||||||
|
|
||||||
list(APPEND SOURCE
|
list(APPEND SOURCE
|
||||||
dnsapi/adns.c
|
adns.c
|
||||||
dnsapi/context.c
|
context.c
|
||||||
dnsapi/memory.c
|
memory.c
|
||||||
dnsapi/names.c
|
names.c
|
||||||
dnsapi/query.c
|
query.c
|
||||||
dnsapi/record.c
|
record.c
|
||||||
dnsapi/rpc.c
|
rpc.c
|
||||||
dnsapi/stubs.c
|
stubs.c
|
||||||
dnsapi/precomp.h
|
precomp.h
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/dnsrslvr_c.c)
|
${CMAKE_CURRENT_BINARY_DIR}/dnsrslvr_c.c)
|
||||||
|
|
||||||
add_library(dnsapi MODULE
|
add_library(dnsapi MODULE
|
||||||
|
@ -31,5 +31,5 @@ add_library(dnsapi MODULE
|
||||||
set_module_type(dnsapi win32dll)
|
set_module_type(dnsapi win32dll)
|
||||||
target_link_libraries(dnsapi adns ${PSEH_LIB})
|
target_link_libraries(dnsapi adns ${PSEH_LIB})
|
||||||
add_importlibs(dnsapi advapi32 rpcrt4 user32 ws2_32 iphlpapi msvcrt kernel32 ntdll)
|
add_importlibs(dnsapi advapi32 rpcrt4 user32 ws2_32 iphlpapi msvcrt kernel32 ntdll)
|
||||||
add_pch(dnsapi dnsapi/precomp.h SOURCE)
|
add_pch(dnsapi precomp.h SOURCE)
|
||||||
add_cd_file(TARGET dnsapi DESTINATION reactos/system32 FOR all)
|
add_cd_file(TARGET dnsapi DESTINATION reactos/system32 FOR all)
|
||||||
|
|
Loading…
Reference in a new issue