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