mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 08:43:28 +00:00
b7e466a220
Livecd: Add drivers. svn path=/branches/cmake-bringup/; revision=49222
14 lines
No EOL
339 B
CMake
14 lines
No EOL
339 B
CMake
|
|
|
|
|
|
add_library(null SHARED null.c null.rc)
|
|
|
|
set_target_properties(null PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8 -Wl,--image-base,0x00010000 -Wl,--exclude-all-symbols" SUFFIX ".sys")
|
|
|
|
target_link_libraries(null
|
|
pseh
|
|
-lntoskrnl
|
|
-lhal)
|
|
|
|
add_dependencies(null psdk bugcodes)
|
|
add_livecd_target(null reactos/system32/drivers) |