reactos/drivers/base/condrv/CMakeLists.txt
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

18 lines
460 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/include/reactos/drivers)
## spec2def(condrv.sys condrv.spec ADD_IMPORTLIB)
add_library(condrv SHARED
condrv.c
control.c
condrv.rc)
# ${CMAKE_CURRENT_BINARY_DIR}/condrv.def)
add_pch(condrv condrv.h)
set_module_type(condrv kernelmodedriver)
target_link_libraries(condrv ${PSEH_LIB})
add_importlibs(condrv ntoskrnl hal)
add_cd_file(TARGET condrv DESTINATION reactos/system32/drivers NO_CAB FOR all)