2011-05-16 13:12:07 +00:00
|
|
|
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2014-02-09 17:28:01 +00:00
|
|
|
list(APPEND SOURCE
|
|
|
|
blue.c
|
|
|
|
font.c
|
|
|
|
blue.h)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(blue MODULE ${SOURCE} blue.rc)
|
2011-05-16 13:12:07 +00:00
|
|
|
set_module_type(blue kernelmodedriver)
|
|
|
|
add_importlibs(blue ntoskrnl hal)
|
2014-02-09 17:28:01 +00:00
|
|
|
add_pch(blue blue.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET blue DESTINATION reactos/system32/drivers NO_CAB FOR all)
|