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