reactos/drivers/bus/pci/CMakeLists.txt
Sylvain Petreolle da55a789c3 [CMAKE]
Add minicd target.
This partial bootcd target produces a minicd iso,
able to start the install process to the cabinet installation page.

svn path=/branches/cmake-bringup/; revision=49072
2010-10-09 13:54:36 +00:00

12 lines
358 B
CMake

add_library(pci SHARED
fdo.c
pci.c
pdo.c
pci.rc)
set_target_properties(pci PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8 -Wl,--image-base,0x00010000 -Wl,--subsystem,native -Wl,--exclude-all-symbols" SUFFIX ".sys")
add_importlibs(pci ntoskrnl hal)
add_dependencies(pci psdk bugcodes buildno_header)
add_minicd_target(pci reactos pci.sys)