92b168f85dba5984f045cf8763eefa1f2f5dabe2
[reactos.git] / dll / appcompat / shims / layer / CMakeLists.txt
1
2 include_directories(${SHIMLIB_DIR})
3
4 spec2def(aclayers.dll layer.spec)
5
6 list(APPEND SOURCE
7 dispmode.c
8 forcedxsetupsuccess.c
9 versionlie.c
10 vmhorizon.c
11 main.c
12 layer.spec)
13
14 add_library(aclayers SHARED
15 ${SOURCE}
16 ${CMAKE_CURRENT_BINARY_DIR}/aclayers.def)
17
18 set_module_type(aclayers win32dll ENTRYPOINT DllMain 12)
19 target_link_libraries(aclayers shimlib)
20 add_importlibs(aclayers user32 kernel32 ntdll)
21 add_cd_file(TARGET aclayers DESTINATION reactos/AppPatch FOR all)