mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
c702cc0d5a
Generalize CMAKE_C_CREATE_SHARED_LIBRARY and remove per project instances. Thanks to Amine for regexxer tool discovery ;) svn path=/branches/cmake-bringup/; revision=48804
16 lines
334 B
CMake
16 lines
334 B
CMake
|
|
|
|
|
|
add_library(mouclass SHARED
|
|
misc.c
|
|
mouclass.c
|
|
mouclass.rc)
|
|
|
|
set_target_properties(mouclass PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8 -Wl,--image-base,0x00010000 -Wl,--exclude-all-symbols" SUFFIX ".sys")
|
|
|
|
target_link_libraries(mouclass
|
|
pseh
|
|
-lntoskrnl
|
|
-lhal)
|
|
|
|
add_dependencies(mouclass psdk bugcodes)
|