Synchronize with trunk.
[reactos.git] / win32ss / drivers / videoprt / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/ntoskrnl/include)
3
4 add_definitions(-D_VIDEOPORT_)
5
6 spec2def(videoprt.sys videoprt.spec ADD_IMPORTLIB)
7
8 list(APPEND SOURCE
9 agp.c
10 child.c
11 ddc.c
12 dispatch.c
13 dma.c
14 event.c
15 funclist.c
16 int10.c
17 interrupt.c
18 resource.c
19 services.c
20 spinlock.c
21 stubs.c
22 timer.c
23 videoprt.c
24 videoprt.rc
25 ${CMAKE_CURRENT_BINARY_DIR}/videoprt.def)
26
27 add_library(videoprt SHARED ${SOURCE})
28
29 set_module_type(videoprt kernelmodedriver)
30 add_importlibs(videoprt ntoskrnl hal)
31
32 add_pch(videoprt videoprt.h)
33 add_cd_file(TARGET videoprt DESTINATION reactos/system32/drivers FOR all)
34