mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
23 lines
408 B
CMake
23 lines
408 B
CMake
|
|
add_subdirectory(beep)
|
|
add_subdirectory(bootvid)
|
|
add_subdirectory(condrv)
|
|
|
|
if(_WINKD_)
|
|
if (GDB)
|
|
add_subdirectory(kdgdb)
|
|
else()
|
|
add_subdirectory(kdcom)
|
|
if(NOT ARCH STREQUAL "arm")
|
|
add_subdirectory(kdvm)
|
|
endif()
|
|
endif()
|
|
else()
|
|
add_subdirectory(kdrosdbg)
|
|
endif()
|
|
|
|
if(NOT ARCH STREQUAL "arm")
|
|
add_subdirectory(nmidebug)
|
|
endif()
|
|
add_subdirectory(null)
|