[ACGENRAL] Add a test shim
[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 shimtest.c
11 themes.c
12 genral.spec)
13
14 add_library(acgenral MODULE
15 ${SOURCE}
16 ${CMAKE_CURRENT_BINARY_DIR}/acgenral.def)
17
18 set_module_type(acgenral win32dll ENTRYPOINT DllMain 12)
19 target_link_libraries(acgenral shimlib)
20 add_importlibs(acgenral uxtheme kernel32 ntdll)
21 add_cd_file(TARGET acgenral DESTINATION reactos/AppPatch FOR all)