mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +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.
12 lines
315 B
CMake
12 lines
315 B
CMake
|
|
list(APPEND SOURCE
|
|
processr.c
|
|
misc.c
|
|
pnp.c
|
|
processr.h)
|
|
|
|
add_library(processr MODULE ${SOURCE} processr.rc)
|
|
set_module_type(processr kernelmodedriver)
|
|
add_importlibs(processr hal ntoskrnl)
|
|
add_pch(processr processr.h SOURCE)
|
|
add_cd_file(TARGET processr DESTINATION reactos/system32/drivers FOR all)
|