xref: /reactos/dll/win32/jsproxy/CMakeLists.txt (revision 8a978a17)
1
2add_definitions(-D__WINESRC__)
3include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
4spec2def(jsproxy.dll jsproxy.spec ADD_IMPORTLIB)
5
6list(APPEND SOURCE
7    main.c
8    ${CMAKE_CURRENT_BINARY_DIR}/jsproxy_stubs.c
9    ${CMAKE_CURRENT_BINARY_DIR}/jsproxy.def)
10
11add_library(jsproxy MODULE ${SOURCE} rsrc.rc)
12set_module_type(jsproxy win32dll)
13target_link_libraries(jsproxy uuid wine)
14add_importlibs(jsproxy oleaut32 ole32 ws2_32 msvcrt kernel32 ntdll)
15add_cd_file(TARGET jsproxy DESTINATION reactos/system32 FOR all)
16