1 2add_definitions(-D__WINESRC__) 3include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine) 4spec2def(rsabase.dll rsabase.spec) 5 6list(APPEND SOURCE 7 version.rc 8 ${CMAKE_CURRENT_BINARY_DIR}/rsabase.def) 9 10add_library(rsabase SHARED ${SOURCE}) 11set_module_type(rsabase win32dll ENTRYPOINT 0 ) 12target_link_libraries(rsabase wine) 13add_importlibs(rsabase rsaenh ntdll) 14add_cd_file(TARGET rsabase DESTINATION reactos/system32 FOR all) 15