mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +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.
18 lines
368 B
CMake
18 lines
368 B
CMake
|
|
list(APPEND SOURCE
|
|
createclose.c
|
|
dispatch.c
|
|
green.c
|
|
keyboard.c
|
|
misc.c
|
|
pnp.c
|
|
power.c
|
|
screen.c
|
|
green.h)
|
|
|
|
add_library(green MODULE ${SOURCE} green.rc)
|
|
add_pch(green green.h SOURCE)
|
|
set_module_type(green kernelmodedriver)
|
|
add_importlibs(green ntoskrnl hal)
|
|
add_cd_file(TARGET green DESTINATION reactos/system32/drivers NO_CAB FOR all)
|