reactos/dll/directx/qedit/CMakeLists.txt
Hermès Bélusca-Maïto e1ef078741 Create this branch to work on loading of different Kernel-Debugger DLL providers, and see whether it is possible to move KDBG from ntoskrnl to a new DLL called, say, KDROSDBG.DLL.
The idea then would be to have the following behaviour (when specifying the following options in the kernel command line):

/DEBUGPORT=COMi --> load KDCOM.DLL and use COMi port (i == 1,2,3,4) if possible.
/DEBUGPORT=FOO  --> load KDFOO.DLL (useful for KDUSB.DLL, KD1394.DLL, KDBAZIS.DLL for VirtualKD, etc...)
/DEBUGPORT=ROSDBG:[COMi|SCREEN|FILE|GDB|...] --> load KDROSDBG.DLL which contains the ROS kernel debugger, and use COMi or SCREEN or... as output port.

svn path=/branches/kd++/; revision=58883
2013-04-28 13:26:45 +00:00

35 lines
657 B
CMake

add_definitions(-D__WINESRC__)
remove_definitions(-D_WIN32_WINNT=0x502)
add_definitions(-D_WIN32_WINNT=0x600)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
spec2def(qedit.dll qedit.spec)
add_library(qedit SHARED
main.c
mediadet.c
regsvr.c
samplegrabber.c
${CMAKE_CURRENT_BINARY_DIR}/qedit.def)
set_module_type(qedit win32dll UNICODE)
target_link_libraries(qedit
strmiids
uuid
wine)
add_importlibs(qedit
msvcrt
advapi32
ole32
oleaut32
kernel32
ntdll)
add_pch(qedit qedit_private.h)
add_dependencies(qedit dxsdk)
add_cd_file(TARGET qedit DESTINATION reactos/system32 FOR all)