reactos/dll/win32/olesvr32/CMakeLists.txt
Timo Kreuzer 9cc4f5ceee [CMAKE]
Don't automatically add stub files to the sources, instead add them manually where neccessary. also fix a number of spec files to resemble actual state of implementation.

svn path=/branches/cmake-bringup/; revision=50574
2011-01-31 14:20:53 +00:00

23 lines
509 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
add_definitions(-D__WINESRC__)
spec2def(olesvr32.dll olesvr32.spec)
list(APPEND SOURCE
olesvr_main.c
${CMAKE_CURRENT_BINARY_DIR}/olesvr32_stubs.c
${CMAKE_CURRENT_BINARY_DIR}/olesvr32.def)
add_library(olesvr32 SHARED ${SOURCE})
set_entrypoint(olesvr32 0)
target_link_libraries(olesvr32
wine
mingw_common)
add_importlibs(olesvr32 kernel32 ntdll)
add_dependencies(olesvr32 psdk buildno_header)
add_cab_target(olesvr32 1)