07999c706581f83cc11227d49efab56ac7557994
[reactos.git] / reactos / win32ss / reactx / dxg / CMakeLists.txt
1
2 spec2def(dxg.sys dxg.spec)
3
4 list(APPEND SOURCE
5 main.c
6 ddhmg.c
7 eng.c
8 historic.c
9 dxg_int.h)
10
11 include_directories(
12 ${REACTOS_SOURCE_DIR}/win32ss/include)
13
14 add_library(dxg SHARED
15 ${SOURCE}
16 dxg.rc
17 ${CMAKE_CURRENT_BINARY_DIR}/dxg.def)
18
19 set_module_type(dxg kernelmodedriver)
20 add_importlibs(dxg dxgthk ntoskrnl)
21 add_pch(dxg dxg_int.h SOURCE)
22 add_cd_file(TARGET dxg DESTINATION reactos/system32/drivers FOR all)