725a2d85f6de5311057be67307788b15cd53cc81
[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 main.c
9 themes.c
10 genral.spec)
11
12 add_library(acgenral SHARED
13 ${SOURCE}
14 ${CMAKE_CURRENT_BINARY_DIR}/acgenral.def)
15
16 set_module_type(acgenral win32dll)
17 target_link_libraries(acgenral shimlib)
18 add_importlibs(acgenral uxtheme msvcrt kernel32 ntdll)
19 add_cd_file(TARGET acgenral DESTINATION reactos/AppPatch FOR all)