mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
c2d0d784c7
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup - In the future, DO NOT under any circumstances branch another branch. This leads to merge problems! svn path=/branches/usb-bringup-trunk/; revision=55018
33 lines
659 B
CMake
33 lines
659 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/ntoskrnl/include)
|
|
|
|
add_definitions(-D_VIDEOPORT_)
|
|
|
|
spec2def(videoprt.sys videoprt.spec)
|
|
|
|
list(APPEND SOURCE
|
|
agp.c
|
|
ddc.c
|
|
dispatch.c
|
|
dma.c
|
|
event.c
|
|
funclist.c
|
|
int10.c
|
|
interrupt.c
|
|
resource.c
|
|
services.c
|
|
spinlock.c
|
|
stubs.c
|
|
timer.c
|
|
videoprt.c
|
|
videoprt.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/videoprt.def)
|
|
|
|
add_library(videoprt SHARED ${SOURCE})
|
|
|
|
set_module_type(videoprt kernelmodedriver)
|
|
add_importlibs(videoprt ntoskrnl hal)
|
|
|
|
add_pch(videoprt videoprt.h)
|
|
add_cd_file(TARGET videoprt DESTINATION reactos/system32/drivers FOR all)
|
|
add_importlib_target(videoprt.spec)
|