2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
add_definitions(-D__WINESRC__)
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2011-05-16 13:12:07 +00:00
|
|
|
spec2def(rsabase.dll rsabase.spec)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
version.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/rsabase.def)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(rsabase MODULE ${SOURCE})
|
2011-09-06 17:31:25 +00:00
|
|
|
set_module_type(rsabase win32dll ENTRYPOINT 0 )
|
2011-05-16 13:12:07 +00:00
|
|
|
target_link_libraries(rsabase wine)
|
|
|
|
add_importlibs(rsabase rsaenh ntdll)
|
|
|
|
add_cd_file(TARGET rsabase DESTINATION reactos/system32 FOR all)
|