[CMAKE]
[reactos.git] / drivers / bus / pci / CMakeLists.txt
1
2
3
4 add_library(pci SHARED
5 fdo.c
6 pci.c
7 pdo.c
8 pci.rc)
9
10 set_target_properties(pci PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8 -Wl,--image-base,0x00010000 -Wl,--subsystem,native -Wl,--exclude-all-symbols" SUFFIX ".sys")
11
12 target_link_libraries(pci
13 -lntoskrnl
14 -lhal)
15
16 add_dependencies(pci psdk bugcodes buildno_header)