xref: /reactos/dll/win32/acledit/CMakeLists.txt (revision 65ce1461)
1
2set_rc_compiler()
3spec2def(acledit.dll acledit.spec)
4
5list(APPEND SOURCE
6    acledit.c
7    stubs.c
8    acledit.rc
9    ${CMAKE_CURRENT_BINARY_DIR}/acledit.def)
10
11add_library(acledit SHARED ${SOURCE})
12
13set_module_type(acledit win32dll UNICODE)
14add_importlibs(acledit msvcrt kernel32 ntdll)
15add_pch(acledit acleditint.h)
16add_cd_file(TARGET acledit DESTINATION reactos/system32 FOR all)
17
18