mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
ddb3d908c9
svn path=/branches/shell-experiments/; revision=62286
49 lines
1.2 KiB
CMake
49 lines
1.2 KiB
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)
|
|
|
|
spec2def(classpnp.sys classpnp.spec ADD_IMPORTLIB)
|
|
|
|
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
|
|
classp.h)
|
|
|
|
add_library(classpnp SHARED
|
|
${SOURCE}
|
|
guid.c
|
|
class.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/classpnp.def)
|
|
|
|
if(ARCH STREQUAL "i386")
|
|
# FIXME: http://www.cmake.org/Bug/view.php?id=12998
|
|
if(NOT MSVC)
|
|
set_source_files_properties(${SOURCE} PROPERTIES COMPILE_FLAGS "-Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=switch")
|
|
endif()
|
|
endif()
|
|
|
|
add_pch(classpnp classp.h SOURCE)
|
|
target_link_libraries(classpnp ${PSEH_LIB} libcntpr)
|
|
set_module_type(classpnp kernelmodedriver)
|
|
add_importlibs(classpnp hal ntoskrnl)
|
|
|
|
add_cd_file(TARGET classpnp DESTINATION reactos/system32/drivers NO_CAB FOR all)
|