mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 09:00:27 +00:00

- Add bugcodes dependency, fixes a rare build failure - Fix for the sync part of commit823fdb19d7
, somehow it didn't pick up the change from the upstream commitb22efbb8b8
17 lines
344 B
CMake
17 lines
344 B
CMake
|
|
list(APPEND SOURCE
|
|
VirtIOPCICommon.c
|
|
VirtIOPCILegacy.c
|
|
VirtIOPCIModern.c
|
|
VirtIORing.c
|
|
VirtIORing-Packed.c)
|
|
|
|
add_library(virtio ${SOURCE})
|
|
add_dependencies(virtio bugcodes xdk)
|
|
|
|
if(NOT MSVC)
|
|
target_compile_options(virtio PRIVATE
|
|
-Wno-unused-function
|
|
-Wno-unknown-pragmas
|
|
-Wno-attributes)
|
|
endif()
|