mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
e1ef078741
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
35 lines
657 B
CMake
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)
|