xref: /reactos/dll/win32/ucdfs/CMakeLists.txt (revision 23373acb)
1
2spec2def(ucdfs.dll ucdfs.spec)
3
4list(APPEND SOURCE
5    ucdfs.c
6    ucdfs.rc
7    ${CMAKE_CURRENT_BINARY_DIR}/ucdfs.def)
8
9add_library(ucdfs MODULE ${SOURCE})
10set_module_type(ucdfs nativedll)
11target_link_libraries(ucdfs cdfslib)
12add_importlibs(ucdfs ntdll)
13add_cd_file(TARGET ucdfs DESTINATION reactos/system32 FOR all)
14