f62c8dd13c9df5ee7b618cecd1a1f48da283ad9a
[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 versionlie.c
9 vmhorizon.c
10 main.c
11 layer.spec)
12
13 add_library(aclayers SHARED
14 ${SOURCE}
15 ${CMAKE_CURRENT_BINARY_DIR}/aclayers.def)
16
17 set_module_type(aclayers win32dll)
18 target_link_libraries(aclayers shimlib)
19 add_importlibs(aclayers user32 msvcrt kernel32 ntdll)
20 add_cd_file(TARGET aclayers DESTINATION reactos/AppPatch FOR all)