mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
12 lines
308 B
CMake
12 lines
308 B
CMake
|
|
add_definitions(-D_DXAPI_)
|
|
spec2def(dxapi.sys dxapi.spec)
|
|
|
|
add_library(dxapi SHARED
|
|
main.c
|
|
dxapi.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/dxapi.def)
|
|
|
|
set_module_type(dxapi kernelmodedriver)
|
|
add_importlibs(dxapi ntoskrnl hal videoprt)
|
|
add_cd_file(TARGET dxapi DESTINATION reactos/system32/drivers FOR all)
|