X-Git-Url: https://git.reactos.org/?p=reactos.git;a=blobdiff_plain;f=drivers%2Fbus%2Fpci%2FCMakeLists.txt;h=79125d89b2177bb20cfb74081a15ba55be2b94a1;hp=5917718dec2f648f0b081e6c92945a7123723b75;hb=c472e29a702cefc905f29c9882ae6813d6947b12;hpb=3d2c0a805bad287bfdbb625577f95a7a14455552 diff --git a/drivers/bus/pci/CMakeLists.txt b/drivers/bus/pci/CMakeLists.txt index 5917718dec2..79125d89b21 100644 --- a/drivers/bus/pci/CMakeLists.txt +++ b/drivers/bus/pci/CMakeLists.txt @@ -1,11 +1,12 @@ -add_library(pci SHARED +list(APPEND SOURCE fdo.c pci.c pdo.c - pci.rc) + pci.h) +add_library(pci SHARED ${SOURCE} pci.rc) set_module_type(pci kernelmodedriver) add_importlibs(pci ntoskrnl hal) -add_pch(pci pci.h) +add_pch(pci pci.h SOURCE) add_cd_file(TARGET pci DESTINATION reactos/system32/drivers NO_CAB FOR all)