mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
14 lines
537 B
Text
14 lines
537 B
Text
|
|
||
|
set(CMAKE_C_CREATE_SHARED_LIBRARY "<CMAKE_C_COMPILER> <CMAKE_SHARED_LIBRARY_C_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS> -o <TARGET> <OBJECTS> <LINK_LIBRARIES>")
|
||
|
|
||
|
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
|
||
|
${REACTOS_SOURCE_DIR}/ntoskrnl/libntoskrnl.a
|
||
|
${REACTOS_SOURCE_DIR}/hal/halx86/libhal.a)
|
||
|
|
||
|
add_dependencies(null psdk bugcodes)
|