1 2include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers) 3 4list(APPEND SOURCE 5 blue.c 6 font.c 7 blue.h) 8 9add_library(blue MODULE ${SOURCE} blue.rc) 10set_module_type(blue kernelmodedriver) 11add_importlibs(blue ntoskrnl hal) 12add_pch(blue blue.h SOURCE) 13add_cd_file(TARGET blue DESTINATION reactos/system32/drivers NO_CAB FOR all) 14