mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 19:21:38 +00:00
[CMAKE] Use modules instead of shared libraries
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.
This commit is contained in:
parent
050db4facb
commit
23373acbb9
544 changed files with 566 additions and 553 deletions
|
@ -5,7 +5,7 @@ list(APPEND SOURCE
|
|||
pnp.c
|
||||
processr.h)
|
||||
|
||||
add_library(processr SHARED ${SOURCE} processr.rc)
|
||||
add_library(processr MODULE ${SOURCE} processr.rc)
|
||||
set_module_type(processr kernelmodedriver)
|
||||
add_importlibs(processr hal ntoskrnl)
|
||||
add_pch(processr processr.h SOURCE)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue