mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 04:37:32 +00:00
23373acbb9
There is no need to compile our DLLs as shared libraries since we are managing symbols exports and imports through spec files. On my system, this reduces the configure-time by a factor of two.
21 lines
529 B
CMake
21 lines
529 B
CMake
|
|
spec2def(deskadp.dll deskadp.spec)
|
|
|
|
list(APPEND SOURCE
|
|
deskadp.c
|
|
shxiface.c
|
|
precomp.h)
|
|
|
|
add_rc_deps(deskadp.rc ${CMAKE_CURRENT_SOURCE_DIR}/resources/adapter.ico)
|
|
|
|
add_library(deskadp MODULE
|
|
${SOURCE}
|
|
deskadp.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/deskadp.def)
|
|
|
|
set_module_type(deskadp win32dll UNICODE)
|
|
target_link_libraries(deskadp uuid)
|
|
add_importlibs(deskadp user32 gdi32 comctl32 ole32 msvcrt kernel32 ntdll)
|
|
add_pch(deskadp precomp.h SOURCE)
|
|
add_cd_file(TARGET deskadp DESTINATION reactos/system32 FOR all)
|