mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
4ee1da42f1
- rewrite spec2def macro because 1. cmake gracefully handles def files as source files 2. cmake gracefully handles autogenerated files as source 3. it did not take into account the fact that all shared libraries haven't the .dll extension svn path=/branches/cmake-bringup/; revision=49358
42 lines
No EOL
960 B
CMake
42 lines
No EOL
960 B
CMake
|
|
include_directories(../inc)
|
|
|
|
add_definitions(
|
|
-DCLASS_GLOBAL_BREAK_ON_LOST_IRPS=0
|
|
-DCLASS_GLOBAL_SECONDS_TO_WAIT_FOR_SYNCHRONOUS_SRB=100
|
|
-DCLASS_GLOBAL_USE_DELAYED_RETRY=1
|
|
-DCLASS_GLOBAL_BUFFERED_DEBUG_PRINT=0
|
|
-DCLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFER_SIZE=512
|
|
-DCLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFERS=512
|
|
)
|
|
|
|
list(APPEND SOURCE
|
|
autorun.c
|
|
class.c
|
|
classwmi.c
|
|
clntirp.c
|
|
create.c
|
|
data.c
|
|
debug.c
|
|
dictlib.c
|
|
lock.c
|
|
obsolete.c
|
|
power.c
|
|
retry.c
|
|
utils.c
|
|
xferpkt.c
|
|
class.rc
|
|
)
|
|
|
|
spec2def(classpnp ${CMAKE_CURRENT_SOURCE_DIR}/class.spec ${CMAKE_CURRENT_BINARY_DIR}/class.def)
|
|
|
|
add_library(classpnp SHARED ${SOURCE})
|
|
target_link_libraries(classpnp ${CMAKE_CURRENT_BINARY_DIR}/class.def pseh libcntpr)
|
|
|
|
|
|
set_module_type(classpnp kernelmodedriver)
|
|
|
|
add_importlibs(classpnp hal ntoskrnl)
|
|
|
|
add_minicd_target(classpnp reactos classpnp.sys)
|
|
add_livecd_target(classpnp reactos/system32/drivers) |