1 2include_directories(${SHIMLIB_DIR}) 3 4spec2def(acgenral.dll genral.spec) 5 6list(APPEND SOURCE 7 ignoredbgout.c 8 ignorefreelib.c 9 main.c 10 themes.c 11 genral.spec) 12 13add_library(acgenral SHARED 14 ${SOURCE} 15 ${CMAKE_CURRENT_BINARY_DIR}/acgenral.def) 16 17set_module_type(acgenral win32dll) 18target_link_libraries(acgenral shimlib) 19add_importlibs(acgenral uxtheme msvcrt kernel32 ntdll) 20add_cd_file(TARGET acgenral DESTINATION reactos/AppPatch FOR all) 21