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