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