xref: /reactos/dll/win32/esent/CMakeLists.txt (revision 803b5e13)
1
2spec2def(esent.dll esent.spec)
3
4list(APPEND SOURCE
5    ${CMAKE_CURRENT_BINARY_DIR}/esent_stubs.c)
6
7add_library(esent MODULE
8    ${SOURCE}
9    ${CMAKE_CURRENT_BINARY_DIR}/esent.def)
10
11set_module_type(esent win32dll)
12add_importlibs(esent msvcrt kernel32 ntdll)
13add_cd_file(TARGET esent DESTINATION reactos/system32 FOR all)
14