reactos/dll/appcompat/shims/layer/CMakeLists.txt
Mark Jansen b18da6730e
[ACLAYERS] Implement the ForceDXSetupSuccess shim
This shim is used on older installers that try to install DirectX,
but encounter errors doing so with the bundled setup.
CORE-15814
2019-03-10 12:45:35 +01:00

22 lines
493 B
CMake

include_directories(${SHIMLIB_DIR})
spec2def(aclayers.dll layer.spec)
list(APPEND SOURCE
dispmode.c
forcedxsetupsuccess.c
versionlie.c
vmhorizon.c
main.c
layer.spec)
add_library(aclayers SHARED
${SOURCE}
${CMAKE_CURRENT_BINARY_DIR}/aclayers.def)
set_module_type(aclayers win32dll ENTRYPOINT DllMain 12)
target_link_libraries(aclayers shimlib)
add_importlibs(aclayers user32 kernel32 ntdll)
add_cd_file(TARGET aclayers DESTINATION reactos/AppPatch FOR all)