mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
23373acbb9
There is no need to compile our DLLs as shared libraries since we are managing symbols exports and imports through spec files. On my system, this reduces the configure-time by a factor of two.
14 lines
366 B
CMake
14 lines
366 B
CMake
|
|
include_directories(..)
|
|
spec2def(class2.sys class2.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
class2.c
|
|
class2.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/class2.def)
|
|
|
|
add_library(class2 MODULE ${SOURCE})
|
|
set_module_type(class2 kernelmodedriver)
|
|
add_importlibs(class2 scsiport ntoskrnl hal)
|
|
add_cd_file(TARGET class2 DESTINATION reactos/system32/drivers NO_CAB FOR all)
|