2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
|
2011-06-26 21:29:55 +00:00
|
|
|
spec2def(mscms.dll mscms.spec)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
handle.c
|
|
|
|
icc.c
|
|
|
|
mscms_main.c
|
|
|
|
profile.c
|
|
|
|
stub.c
|
|
|
|
transform.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/mscms_stubs.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/mscms.def)
|
|
|
|
|
2013-09-21 20:43:42 +00:00
|
|
|
add_library(mscms SHARED ${SOURCE} version.rc)
|
2011-05-16 13:12:07 +00:00
|
|
|
set_module_type(mscms win32dll)
|
|
|
|
target_link_libraries(mscms wine)
|
2013-09-21 20:43:42 +00:00
|
|
|
add_importlibs(mscms advapi32 msvcrt kernel32 ntdll)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET mscms DESTINATION reactos/system32 FOR all)
|